Tweaking some build script and mcmod stuff

This commit is contained in:
Pahimar 2014-05-16 11:48:51 -04:00
parent dbae8445ab
commit a2a82d3d36
2 changed files with 8 additions and 4 deletions

View file

@ -17,13 +17,13 @@ buildscript {
apply plugin: 'forge'
version = "1.7.2-0.2." + System.getenv("BUILD_NUMBER") ?: 0;
version = "1.7.2-0.2.${System.getenv("BUILD_NUMBER") ?: 0}";
group = "com.pahimar.ee3" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "EquivalentExchange3"
minecraft {
version = "1.7.2-10.12.1.1082"
assetDir = "eclipse/assets"
assetDir = "run/assets"
}
dependencies {
@ -48,6 +48,9 @@ processResources
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
// exclude xcf files, as they are for development only
exclude '**/*.xcf'
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'

View file

@ -4,14 +4,15 @@
"name": "Equivalent Exchange 3",
"description": "Transmute stuff into other stuff! Become a Minecraft God!",
"version": "${version}",
"mcversion": ${mcversion}",
"url": "http://www.minecraftforum.net/topic/1106178-",
"updateUrl": "",
"authorList": [
"pahimar",
"x3n0ph0b3"
],
"credits": "By pahimar, based on Equivalent Exchange 1 & 2 by x3n0ph0b3",
"logoFile": "/assets/ee3/textures/logo/logo.png",
"credits": "By pahimar, based (loosely) on Equivalent Exchange 1 & 2 by x3n0ph0b3",
"logoFile": "assets/ee3/textures/logo/logo.png",
"screenshots": [
],
"parent":"",