aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2021-05-12 21:44:59 +0800
committershedaniel <daniel@shedaniel.me>2021-05-12 21:44:59 +0800
commit85960a164a53fc0c3c36fcd0d7ad18e26c12eb80 (patch)
treefccb029b2519a6437aaec279dc0e72dd63c5fc31 /build.gradle
parent855836b97214b060a3c8e9319f62501c2d3b4b28 (diff)
parentfc3a5ef052544da5c46ad12e166009fbdbe93c4b (diff)
downloadarchitectury-loom-85960a164a53fc0c3c36fcd0d7ad18e26c12eb80.tar.gz
architectury-loom-85960a164a53fc0c3c36fcd0d7ad18e26c12eb80.tar.bz2
architectury-loom-85960a164a53fc0c3c36fcd0d7ad18e26c12eb80.zip
Merge remote-tracking branch 'FabricMC/future/dev' into dev/future
# Conflicts: # .github/workflows/test-push.yml # src/main/java/net/fabricmc/loom/configuration/CompileConfiguration.java
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle9
1 files changed, 3 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index 5b965a9e..3ad73d1f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -14,15 +14,12 @@ plugins {
id 'com.github.johnrengelman.shadow' version '4.0.4'
}
-sourceCompatibility = 1.8
-targetCompatibility = 1.8
+sourceCompatibility = 16
+targetCompatibility = 16
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
-
- if (JavaVersion.current().isJava9Compatible()) {
- it.options.release = 8
- }
+ it.options.release = 16
}