Apply UTF-8 encoding and J16 release level consistently.

This commit is contained in:
Tyler Hancock 2021-10-11 22:40:10 -06:00
parent 07b5f42740
commit 8550e017a1
No known key found for this signature in database
GPG Key ID: D10D32949D03E695
2 changed files with 7 additions and 6 deletions

View File

@ -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)
}

View File

@ -37,4 +37,11 @@ subprojects {
url = 'https://maven.blamejared.com'
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release = 16
}
}