|
@@ -1,7 +1,7 @@
|
|
|
import groovy.json.JsonSlurper
|
|
|
|
|
|
plugins {
|
|
|
- id 'fabric-loom' version "0.6-SNAPSHOT" apply false
|
|
|
+ id 'fabric-loom' version "0.8-SNAPSHOT" apply false
|
|
|
id "io.freefair.lombok" version "5.3.3.3" apply false
|
|
|
}
|
|
|
|
|
@@ -9,8 +9,8 @@ subprojects {
|
|
|
apply plugin: "fabric-loom"
|
|
|
apply plugin: "io.freefair.lombok"
|
|
|
|
|
|
- sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
- targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
+ sourceCompatibility = JavaVersion.VERSION_16
|
|
|
+ targetCompatibility = JavaVersion.VERSION_16
|
|
|
|
|
|
group = rootProject.maven_group
|
|
|
archivesBaseName = "$rootProject.archives_base_name-${project.name}"
|
|
@@ -33,6 +33,8 @@ subprojects {
|
|
|
// this fixes some edge cases with special characters not displaying correctly
|
|
|
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
|
|
|
it.options.encoding = "UTF-8"
|
|
|
+
|
|
|
+ it.options.release = 16
|
|
|
}
|
|
|
|
|
|
repositories {
|