mirror of
https://github.com/HibiscusMC/HMCCosmetics.git
synced 2025-12-19 15:09:19 +00:00
27 lines
492 B
Plaintext
27 lines
492 B
Plaintext
plugins {
|
|
id("java")
|
|
id("io.papermc.paperweight.userdev") version "1.5.1"
|
|
}
|
|
|
|
dependencies {
|
|
paperDevBundle("1.20-R0.1-SNAPSHOT")
|
|
implementation(project(":common"))
|
|
}
|
|
|
|
tasks {
|
|
|
|
build {
|
|
dependsOn(reobfJar)
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release.set(17)
|
|
}
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
processResources {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
}
|
|
} |