fix(minecraft): Fix publishing of shadow relocation
This commit is contained in:
@@ -13,7 +13,7 @@ junit = "5.12.0"
|
|||||||
lombok = "1.18.38"
|
lombok = "1.18.38"
|
||||||
logback = "1.5.18"
|
logback = "1.5.18"
|
||||||
mockito = "5.14.2"
|
mockito = "5.14.2"
|
||||||
shadow = "9.0.0-rc2"
|
shadow = "9.3.0"
|
||||||
slf4j = "2.0.16"
|
slf4j = "2.0.16"
|
||||||
|
|
||||||
[plugins]
|
[plugins]
|
||||||
|
|||||||
@@ -10,4 +10,5 @@ dependencies {
|
|||||||
implementation(pluginMarker(mcCommonLibs.plugins.fabric.loom))
|
implementation(pluginMarker(mcCommonLibs.plugins.fabric.loom))
|
||||||
implementation(pluginMarker(mcCommonLibs.plugins.jcyo))
|
implementation(pluginMarker(mcCommonLibs.plugins.jcyo))
|
||||||
implementation(pluginMarker(libs.plugins.lombok))
|
implementation(pluginMarker(libs.plugins.lombok))
|
||||||
|
implementation(pluginMarker(libs.plugins.shadow))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ plugins {
|
|||||||
id("de.siphalor.tweed5.expanded-sources-jar")
|
id("de.siphalor.tweed5.expanded-sources-jar")
|
||||||
id("de.siphalor.jcyo")
|
id("de.siphalor.jcyo")
|
||||||
id("io.freefair.lombok")
|
id("io.freefair.lombok")
|
||||||
|
id("com.gradleup.shadow")
|
||||||
id("de.siphalor.tweed5.shadow.explicit")
|
id("de.siphalor.tweed5.shadow.explicit")
|
||||||
id("de.siphalor.tweed5.minecraft.mod.base")
|
id("de.siphalor.tweed5.minecraft.mod.base")
|
||||||
}
|
}
|
||||||
@@ -154,6 +155,15 @@ tasks.named<Copy>("processTestmodResources") {
|
|||||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
shadow {
|
||||||
|
addShadowVariantIntoJavaComponent = false
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.remapJar {
|
||||||
|
dependsOn(tasks.shadowJar)
|
||||||
|
inputFile = tasks.shadowJar.get().archiveFile
|
||||||
|
}
|
||||||
|
|
||||||
fun getMcCatalogVersion(name: String): String {
|
fun getMcCatalogVersion(name: String): String {
|
||||||
return mcCatalog.findVersion(name).get().requiredVersion
|
return mcCatalog.findVersion(name).get().requiredVersion
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user