aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-02-05 13:19:59 +0100
committerLinnea Gräf <nea@nea.moe>2024-02-05 13:19:59 +0100
commit09cd2809fbe4c3411c9065fd5b8a7fca52cceafd (patch)
tree0543ba9327e5a5bb7fcf6b1545bd8108e5208a4f /build.gradle.kts
parentd9c6bd7e73673396f13595546edd687b0b3a8b9d (diff)
downloadforge1.8.9template-09cd2809fbe4c3411c9065fd5b8a7fca52cceafd.tar.gz
forge1.8.9template-09cd2809fbe4c3411c9065fd5b8a7fca52cceafd.tar.bz2
forge1.8.9template-09cd2809fbe4c3411c9065fd5b8a7fca52cceafd.zip
Add an auto discovery plugin for mixins
This will automatically find mixins in the mixin plugin, not requiring the manual configuration. This is less friction, especially for newer users. Usually this isn't super advisable, or needs more configuration to avoid server/client mixins being incorrectly applied, but with the target demographic of mostly client mods, I think this is a worthwhile change.
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 7286e59..ddaf995 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -107,7 +107,7 @@ tasks.processResources {
inputs.property("version", project.version)
inputs.property("mcversion", mcVersion)
inputs.property("modid", modid)
- inputs.property("mixinGroup", mixinGroup)
+ inputs.property("basePackage", baseGroup)
filesMatching(listOf("mcmod.info", "mixins.$modid.json")) {
expand(inputs.properties)