13 lines
272 B
Plaintext
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))
|
|
}
|
|
}
|