9
0
mirror of https://github.com/HibiscusMC/HibiscusCommons.git synced 2026-01-06 15:51:55 +00:00

feat: add 1.21.11 support

This commit is contained in:
Logan
2025-12-29 15:59:10 -06:00
parent dd545ed183
commit 197d6c0c7a
9 changed files with 997 additions and 0 deletions

30
v1_21_R7/build.gradle.kts Normal file
View File

@@ -0,0 +1,30 @@
plugins {
id("java")
id("io.papermc.paperweight.userdev")
}
dependencies {
paperweight.paperDevBundle("1.21.10-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()
}
}