Fix Java toolchain configuration to work on arm macOS
This commit is contained in:
parent
81a7559b41
commit
eaadb4a68f
1 changed files with 6 additions and 2 deletions
|
@ -4,15 +4,19 @@ plugins {
|
|||
id("io.papermc.paperweight.core") version "1.1.9"
|
||||
}
|
||||
|
||||
subprojects {
|
||||
allprojects {
|
||||
apply(plugin = "java")
|
||||
apply(plugin = "maven-publish")
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion.set(JavaLanguageVersion.of(16))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
subprojects {
|
||||
apply(plugin = "java")
|
||||
apply(plugin = "maven-publish")
|
||||
|
||||
tasks.withType<JavaCompile> {
|
||||
options.encoding = Charsets.UTF_8.name()
|
||||
|
|
Loading…
Reference in a new issue