Fixed NMS buildscripts some more

This commit is contained in:
Auxilor
2022-03-02 11:28:16 +00:00
parent 0cbf78733e
commit 87684abbbb
2 changed files with 12 additions and 12 deletions

View File

@@ -11,18 +11,18 @@ dependencies {
}
tasks {
reobfJar {
dependsOn(shadowJar)
}
build {
dependsOn(reobfJar)
}
reobfJar {
mustRunAfter(shadowJar)
}
shadowJar {
relocate(
"com.willfp.internal.spigot.proxy.common",
"com.willfp.internal.spigot.proxy.v1_17_R1.common"
"com.willfp.eco.internal.spigot.proxy.common",
"com.willfp.eco.internal.spigot.proxy.v1_17_R1.common"
)
}
}

View File

@@ -11,18 +11,18 @@ dependencies {
}
tasks {
reobfJar {
dependsOn(shadowJar)
}
build {
dependsOn(reobfJar)
}
reobfJar {
mustRunAfter(shadowJar)
}
shadowJar {
relocate(
"com.willfp.internal.spigot.proxy.common",
"com.willfp.internal.spigot.proxy.v1_18_R1.common"
"com.willfp.eco.internal.spigot.proxy.common",
"com.willfp.eco.internal.spigot.proxy.v1_18_R1.common"
)
}
}