Skip to content

Commit fd79cc0

Browse files
committed
chore: disable remapping for now
1 parent afcea37 commit fd79cc0

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

build-logic/src/main/kotlin/buildlogic.adapter.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ plugins {
1010

1111
paperweight {
1212
injectPaperRepository = false
13-
reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.REOBF_PRODUCTION
13+
// TODO: switch back to REOBF when paper releases mappings
14+
reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
1415
}
1516

1617
repositories {
@@ -52,9 +53,10 @@ dependencies {
5253
}
5354
}
5455

55-
tasks.named("assemble") {
56+
// TODO: re-enable when paper releases mappings
57+
/* tasks.named("assemble") {
5658
dependsOn("reobfJar")
57-
}
59+
} */
5860

5961
tasks.named<Javadoc>("javadoc") {
6062
enabled = false

worldedit-bukkit/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,8 @@ tasks.withType<ShadowJar>().configureEach {
244244

245245
tasks.named("assemble").configure {
246246
dependsOn("shadowJar")
247-
dependsOn("reobfShadowJar")
247+
// TODO: re-enable when paper releases mappings
248+
// dependsOn("reobfShadowJar")
248249
}
249250

250251
publishMods {

0 commit comments

Comments
 (0)