mirror of
https://github.com/HibiscusMC/HibiscusCommons.git
synced 2025-12-19 15:09:26 +00:00
30 lines
543 B
Plaintext
30 lines
543 B
Plaintext
plugins {
|
|
id("java")
|
|
id("io.papermc.paperweight.userdev")
|
|
}
|
|
|
|
dependencies {
|
|
paperweight.paperDevBundle("1.21.8-R0.1-SNAPSHOT")
|
|
implementation(project(":common"))
|
|
}
|
|
|
|
tasks {
|
|
|
|
build {
|
|
dependsOn(reobfJar)
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
java {
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(21));
|
|
}
|
|
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
processResources {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
}
|
|
} |