aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index c63956b..e180849 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -23,17 +23,17 @@ loom {
property("mixin.debug", "true")
property("asmhelper.verbose", "true")
arg("--tweakClass", "org.spongepowered.asm.launch.MixinTweaker")
- arg("--mixin", "mixins.examplemod.json")
+ arg("--mixin", "mixins.dulkirmod.json")
}
}
forge {
pack200Provider.set(dev.architectury.pack200.java.Pack200Adapter())
// If you don't want mixins, remove this lines
- mixinConfig("mixins.examplemod.json")
+ mixinConfig("mixins.dulkirmod.json")
}
// If you don't want mixins, remove these lines
mixin {
- defaultRefmapName.set("mixins.examplemod.refmap.json")
+ defaultRefmapName.set("mixins.dulkirmod.refmap.json")
}
}
@@ -77,14 +77,14 @@ tasks.withType(JavaCompile::class) {
}
tasks.withType(Jar::class) {
- archiveBaseName.set("examplemod")
+ archiveBaseName.set("dulkirmod")
manifest.attributes.run {
this["FMLCorePluginContainsFMLMod"] = "true"
this["ForceLoadAsMod"] = "true"
// If you don't want mixins, remove these lines
this["TweakClass"] = "org.spongepowered.asm.launch.MixinTweaker"
- this["MixinConfigs"] = "mixins.examplemod.json"
+ this["MixinConfigs"] = "mixins.dulkirmod.json"
}
}
@@ -105,7 +105,7 @@ tasks.shadowJar {
}
// If you want to include other dependencies and shadow them, you can relocate them in here
- fun relocate(name: String) = relocate(name, "com.examplemod.deps.$name")
+ fun relocate(name: String) = relocate(name, "com.dulkirmod.deps.$name")
}
tasks.assemble.get().dependsOn(tasks.remapJar)