diff --git a/Fabric/build.gradle b/Fabric/build.gradle index 58361f0..d68995b 100644 --- a/Fabric/build.gradle +++ b/Fabric/build.gradle @@ -40,12 +40,6 @@ processResources { } } -tasks.withType(JavaCompile).configureEach { - it.options.encoding = "UTF-8" - - it.options.release = 16 -} - tasks.withType(JavaCompile) { source(project(":Common").sourceSets.main.allSource) } diff --git a/build.gradle b/build.gradle index b56fb56..3c9e9e0 100644 --- a/build.gradle +++ b/build.gradle @@ -37,4 +37,11 @@ subprojects { url = 'https://maven.blamejared.com' } } + + + tasks.withType(JavaCompile).configureEach { + + it.options.encoding = 'UTF-8' + it.options.release = 16 + } } \ No newline at end of file