From 7e8fa83e5afc0b21c96b91bbe87f39751e841bf7 Mon Sep 17 00:00:00 2001 From: Walker Selby Date: Fri, 12 May 2023 11:32:40 -0700 Subject: Add constants to buildscript to allow easier setup Refactor to create constants for common values to be replaced Signed-off-by: Walker Selby --- src/main/resources/mcmod.info | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src') diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 7b1a26b..e1f8be1 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -1,18 +1,18 @@ [ { - "modid": "examplemod", - "name": "Xample Mod", - "description": "A mod that is used as an example.", - "version": "1.0.0", - "mcversion": "1.8.9", - "url": "https://github.com/romangraef/Forge1.8.9Template/", - "updateUrl": "", - "authorList": [ - "You" - ], - "credits": "", - "logoFile": "", - "screenshots": [], - "dependencies": [] + "modid": "${modid}", + "name": "Xample Mod", + "description": "A mod that is used as an example.", + "version": "${version}", + "mcversion": "1.8.9", + "url": "https://github.com/romangraef/Forge1.8.9Template/", + "updateUrl": "", + "authorList": [ + "You" + ], + "credits": "", + "logoFile": "", + "screenshots": [], + "dependencies": [] } -] +] \ No newline at end of file -- cgit