diff options
author | Juuxel <6596629+Juuxel@users.noreply.github.com> | 2021-06-28 23:10:40 +0300 |
---|---|---|
committer | Juuxel <6596629+Juuxel@users.noreply.github.com> | 2021-06-28 23:10:40 +0300 |
commit | 20f1e9460186a46b509a976d54ff0f3b74224989 (patch) | |
tree | 5ecd23fe5bf9f73be7ba4bae345a0fda5a3d08dd /forge-runtime | |
parent | 8bba3fe765245c1ff29417533b6824dceb95d07d (diff) | |
download | architectury-loom-20f1e9460186a46b509a976d54ff0f3b74224989.tar.gz architectury-loom-20f1e9460186a46b509a976d54ff0f3b74224989.tar.bz2 architectury-loom-20f1e9460186a46b509a976d54ff0f3b74224989.zip |
Use typesafe constants instead of ints
Diffstat (limited to 'forge-runtime')
-rw-r--r-- | forge-runtime/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forge-runtime/build.gradle b/forge-runtime/build.gradle index ea477a1f..031bdb5d 100644 --- a/forge-runtime/build.gradle +++ b/forge-runtime/build.gradle @@ -10,8 +10,8 @@ group = rootProject.group archivesBaseName = 'architectury-loom-forge-runtime' version = rootProject.version -sourceCompatibility = 8 -targetCompatibility = 8 +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 configurations { include |