Skip to content

Commit 1bc068b

Browse files
committed
Fix 1.21.10 spigot support
1 parent ff93056 commit 1bc068b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies {
3737
api(project(":v1_21_4", io.papermc.paperweight.util.constants.REOBF_CONFIG))
3838
api(project(":v1_21_5", io.papermc.paperweight.util.constants.REOBF_CONFIG))
3939
api(project(":v1_21_6", io.papermc.paperweight.util.constants.REOBF_CONFIG))
40-
api(project(":v1_21_9", "default"))
40+
api(project(":v1_21_9", io.papermc.paperweight.util.constants.REOBF_CONFIG))
4141
}
4242

4343
tasks {

mcv/v1_21_9/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ dependencies {
77
paperweight.paperDevBundle("1.21.10-R0.1-SNAPSHOT")
88
}
99

10-
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
10+
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.REOBF_PRODUCTION
1111

1212
java {
1313
toolchain.languageVersion = JavaLanguageVersion.of(24)
1414
}
1515

1616
tasks.compileJava {
1717
options.release = 21
18+
}
19+
20+
tasks.assemble {
21+
dependsOn(tasks.reobfJar)
1822
}

0 commit comments

Comments
 (0)