diff options
author | ingle <inglettronald@gmail.com> | 2022-09-23 05:01:47 -0500 |
---|---|---|
committer | ingle <inglettronald@gmail.com> | 2022-09-23 05:01:47 -0500 |
commit | add142c970d52d33e731fb3a30605a5ef1f128bd (patch) | |
tree | 5cad6bf99e2453481f3cbba220cbe6491b4ce625 /build.gradle.kts | |
parent | 033de65a180b64fc645036d142589f57956ea263 (diff) | |
download | DulkirMod-add142c970d52d33e731fb3a30605a5ef1f128bd.tar.gz DulkirMod-add142c970d52d33e731fb3a30605a5ef1f128bd.tar.bz2 DulkirMod-add142c970d52d33e731fb3a30605a5ef1f128bd.zip |
Nothing works yet :+1:
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 12 |
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) |