1
0
Fork 0

fix: reobf with spigot mappings

This commit is contained in:
ineanto 2025-09-06 11:31:52 +02:00
parent bfdbba402f
commit b64f19c421
Signed by: ineanto
GPG key ID: E511F9CAA2F9CE84
5 changed files with 17 additions and 15 deletions

View file

@ -21,7 +21,7 @@ dependencies {
// Inventory UI
compileOnly(libs.invui)
implementation(libs.invui.kotlin)
compileOnly(libs.invui.kotlin)
// Resource Pack (unused)
implementation(libs.glyphs.api)
@ -35,7 +35,15 @@ kotlin {
jvmToolchain(21)
}
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.REOBF_PRODUCTION
tasks {
shadowJar {
manifest {
attributes["paperweight-mappings-namespace"] = "spigot"
}
}
runServer {
minecraftVersion("1.21.8")
}