From f26c49d6b41a5419df21ed616b3b2a8537b247a8 Mon Sep 17 00:00:00 2001 From: Ben Spiers Date: Mon, 7 Jul 2014 21:17:34 +0100 Subject: [PATCH] Add a mcmod.info for development purposes. --- build.gradle | 8 ------ src/main/resources/mcmod.info | 47 +++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 8 deletions(-) create mode 100755 src/main/resources/mcmod.info diff --git a/build.gradle b/build.gradle index 8c0fc46ba..60ab069c1 100644 --- a/build.gradle +++ b/build.gradle @@ -57,14 +57,6 @@ minecraft { processResources { - // replace stuff in mcmod.info, nothing else - from(sourceSets.main.resources.srcDirs) { - include 'mcmod/info' - - // replace version and mcversion - expand 'version':project.version, 'mcversion':project.minecraft.version - } - // copy everything else, thats not the mcmod.info from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info new file mode 100755 index 000000000..43bfec86e --- /dev/null +++ b/src/main/resources/mcmod.info @@ -0,0 +1,47 @@ +[ +{ + "modid": "Mekanism", + "name": "Mekanism", + "description": "Energy, Armor, Tools, Weapons, Machines, Magic.", + "version": "${version}", + "mcversion": "${mc_version}", + "updateUrl": "", + "authors": [ + "aidancbrady" + ], + "credits": "Thanks to everyone who has contributed to this ongoing project.", + "logoFile": "logo.png", + "screenshots": [ + ] +}, +{ + "modid": "MekanismGenerators", + "name": "MekanismGenerators", + "description": "Generators module of Mekanism.", + "version": "${version}", + "mcversion": "${mc_version}", + "updateUrl": "", + "authors": [ + "aidancbrady" + ], + "credits": "Thanks to everyone who has contributed to this ongoing project.", + "logoFile": "logo.png", + "screenshots": [ + ] +}, +{ + "modid": "MekanismTools", + "name": "MekanismTools", + "description": "Tools module for Mekanism.", + "version": "${version}", + "mcversion": "${mc_version}", + "updateUrl": "", + "authors": [ + "aidancbrady" + ], + "credits": "Thanks to everyone who has contributed to this ongoing project.", + "logoFile": "logo.png", + "screenshots": [ + ] +} +]