9
0
mirror of https://github.com/HibiscusMC/HibiscusCommons.git synced 2025-12-19 15:09:26 +00:00
Files
HibiscusCommons/common/build.gradle.kts
2023-12-22 21:24:55 -06:00

18 lines
449 B
Plaintext

// Look into the possibility of splitting off the API portion into its own module? (Probably not worth it right now) - 12/22/23
tasks {
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release.set(17)
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
filteringCharset = Charsets.UTF_8.name()
}
}