ce6a2e8487
The proper way to use gradle is to actually use the gradle.properties. It will be automatically read without using a self defined config slurper. The gradle.properties adds additional convenient options e.g. regarding the VM options and parallel calculation or daemons
64 lines
2.5 KiB
Groovy
64 lines
2.5 KiB
Groovy
/*
|
|
* This file is part of Applied Energistics 2.
|
|
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
|
|
*
|
|
* Applied Energistics 2 is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Applied Energistics 2 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
|
|
*/
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
name 'CB Maven FS'
|
|
url "http://chickenbones.net/maven/"
|
|
}
|
|
|
|
maven {
|
|
name "Waila Mobius Repo"
|
|
url "http://mobiusstrip.eu/maven"
|
|
}
|
|
|
|
maven {
|
|
name "FireBall API Depot"
|
|
url "http://dl.tsr.me/artifactory/libs-release-local"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compile "codechicken:ForgeMultipart:${minecraft_version}-${fmp_version}:dev"
|
|
compile "codechicken:CodeChickenLib:${minecraft_version}-${code_chicken_lib_version}:dev"
|
|
compile "codechicken:CodeChickenCore:${minecraft_version}-${code_chicken_core_version}:dev"
|
|
compile "codechicken:NotEnoughItems:${minecraft_version}-${nei_version}:dev"
|
|
|
|
compile "com.mod-buildcraft:buildcraft:${bc_version}:dev"
|
|
|
|
// self compiled APIs
|
|
compile(group: 'api', name: 'betterstorage', version: "${api_betterstorage_version}")
|
|
compile(group: 'api', name: 'coloredlightscore', version: "${api_coloredlightscore_version}")
|
|
compile(group: 'api', name: 'craftguide', version: "${api_craftguide_version}")
|
|
compile(group: 'api', name: 'ic2', version: "${api_ic2_version}")
|
|
compile(group: 'api', name: 'immibis', version: "${api_immibis_version}")
|
|
compile(group: 'api', name: 'invtweaks', version: "${api_invtweaks_version}")
|
|
compile(group: 'api', name: 'mfr', version: "${api_mfr_version}")
|
|
compile(group: 'api', name: 'railcraft', version: "${api_railcraft_version}")
|
|
compile(group: 'api', name: 'rblocks', version: "${api_rblocks_version}")
|
|
compile(group: 'api', name: 'rf', version: "${api_rf_version}")
|
|
compile "appeng:Waila:${api_waila_version}:api"
|
|
compile "appeng:RotaryCraft:${api_rotarycraft_version}:api"
|
|
compile "appeng:mekanism:${api_mekansim_version}:api"
|
|
|
|
testCompile "junit:junit:4.11"
|
|
}
|