From 8c46698f97bb22e3b16061912a34a03fe52da08b Mon Sep 17 00:00:00 2001 From: ILikePlayingGames <22475143+ILikePlayingGames@users.noreply.github.com> Date: Sat, 1 Jul 2023 23:41:16 -0400 Subject: Update dependencies and fix bugs - Update Gradle to 8.2-bin - Update Shadow to 8.1.1 - Update DevAuth to 1.1.2 - Update Mixin to 0.8.5 - Add some missed property substitutions --- src/main/resources/mcmod.info | 2 +- src/main/resources/mixins.examplemod.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/resources') diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index e1f8be1..ab6d5dd 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -4,7 +4,7 @@ "name": "Xample Mod", "description": "A mod that is used as an example.", "version": "${version}", - "mcversion": "1.8.9", + "mcversion": "${mcversion}", "url": "https://github.com/romangraef/Forge1.8.9Template/", "updateUrl": "", "authorList": [ diff --git a/src/main/resources/mixins.examplemod.json b/src/main/resources/mixins.examplemod.json index ee27201..570a0d0 100644 --- a/src/main/resources/mixins.examplemod.json +++ b/src/main/resources/mixins.examplemod.json @@ -1,6 +1,6 @@ { - "package": "com.example.mixin", - "refmap": "mixins.examplemod.refmap.json", + "package": "${mixinGroup}", + "refmap": "mixins.${modid}.refmap.json", "minVersion": "0.7", "compatibilityLevel": "JAVA_8", "mixins": [ -- cgit