def mainVersion = "1.3" def buildNumber = "8" /* * This file is part of Industrial Wires. * Copyright (C) 2016-2017 malte0811 * * Industrial Wires is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Industrial Wires is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Industrial Wires. If not, see . */ // For those who want the bleeding edge buildscript { repositories { jcenter() maven { name = "forge" url = "http://files.minecraftforge.net/maven" } } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT' } } apply plugin: 'net.minecraftforge.gradle.forge' /* // for people who want stable - not yet functional for MC 1.8.8 - we require the forgegradle 2.1 snapshot plugins { id "net.minecraftforge.gradle.forge" version "2.0.2" } */ version = "${mainVersion}-${buildNumber}" group= "malte0811" archivesBaseName = "IndustrialWires" sourceCompatibility = 1.8 targetCompatibility = 1.8 minecraft { version = "13.20.0.2282" runDir = "run" replace '${version}', project.version mappings = "snapshot_20170323" } repositories { maven { name 'ic2' url 'http://maven.ic2.player.to/' } maven { name 'jared maven' url 'http://blamejared.com/maven' } } dependencies { deobfCompile "net.industrial-craft:industrialcraft-2:2.7.+:dev" deobfCompile "blusunrize:ImmersiveEngineering:0.11-+:deobf" } jar { from 'LICENSE' manifest { } } 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' } }