AuthMeVelocity/build.gradle.kts
2024-12-19 17:12:04 +03:00

13 lines
272 B
Plaintext

allprojects {
apply<JavaPlugin>()
tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
options.release.set(16)
}
configure<JavaPluginExtension> {
toolchain.languageVersion.set(JavaLanguageVersion.of(16))
}
}