Skip to content

Commit 93a0ba4

Browse files
committed
fix(build): relocate bundled ExtraUtils' slimefun4 refs to slimefun5
1 parent 8f85f85 commit 93a0ba4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ tasks {
8484
shadowJar {
8585
relocate("org.bstats", "fluffymachines.libs.bstats")
8686
archiveFileName.set("FluffyMachines-$displayVersion.jar")
87-
relocate("dev.j3fftw.extrautils", "io.ncbpfluffybear.fluffymachines.extrautils")
87+
relocate("dev.j3fftw.extrautils", "io.ncbpfluffybear.fluffymachines.extrautils")
88+
// Bundled ExtraUtils is compiled against upstream Slimefun4; repoint its API refs to our
89+
// slimefun5 package (core provides slimefun5 at runtime).
90+
relocate("io.github.thebusybiscuit.slimefun4", "io.github.thebusybiscuit.slimefun5")
8891
exclude("META-INF/**")
8992
}
9093
build {

0 commit comments

Comments
 (0)