buildscript { repositories { mavenCentral() maven { name = "forge" url = "http://files.minecraftforge.net/maven" } maven { name = "sonatype" url = "https://oss.sonatype.org/content/repositories/snapshots/" } } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT' } } apply plugin: 'forge' version = "1.7.10-1.0.4" group= "pers.gwyog.gtneioreplugin" archivesBaseName = "gtneioreplugin" sourceCompatibility = 1.7 targetCompatibility = 1.7 minecraft { version = "1.7.10-10.13.4.1614-1.7.10" runDir = "eclipse" } dependencies { // You should put the dev builds of NEI (with its dependencies), GregTech5 and GregTech6 in the /libs folder manually // to make the gradlew build working properly. // compile "codechicken:NotEnoughItems:1.7.10-1.0.5.120:dev" // compile "codechicken:CodeChickenLib:1.7.10-1.1.3.140:dev" // compile "codechicken:CodeChickenCore:1.7.10-1.0.7.47:dev" } processResources { // this will ensure that this task is redone when the versions change. inputs.property "version", project.version inputs.property "mcversion", project.minecraft.version // 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' } }