2014-11-23 13:16:50 +01:00
|
|
|
/*
|
|
|
|
* 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>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-26 16:14:44 +02:00
|
|
|
repositories {
|
|
|
|
|
|
|
|
maven {
|
|
|
|
name 'CB Maven FS'
|
|
|
|
url "http://chickenbones.net/maven/"
|
|
|
|
}
|
|
|
|
|
|
|
|
maven {
|
|
|
|
name "Waila Mobius Repo"
|
|
|
|
url "http://mobiusstrip.eu/maven"
|
|
|
|
}
|
|
|
|
|
2014-09-26 21:34:58 +02:00
|
|
|
maven {
|
2014-09-28 18:45:55 +02:00
|
|
|
name "FireBall API Depot"
|
2014-09-26 21:34:58 +02:00
|
|
|
url "http://dl.tsr.me/artifactory/libs-release-local"
|
|
|
|
}
|
2014-09-26 16:14:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
compile "codechicken:ForgeMultipart:${config.cb_minecraft_version}-${config.fmp_version}:dev"
|
|
|
|
compile "codechicken:CodeChickenLib:${config.cb_minecraft_version}-${config.code_chicken_lib_version}:dev"
|
|
|
|
compile "codechicken:CodeChickenCore:${config.cb_minecraft_version}-${config.code_chicken_core_version}:dev"
|
|
|
|
compile "codechicken:NotEnoughItems:${config.cb_minecraft_version}-${config.nei_version}:dev"
|
|
|
|
|
2014-12-21 19:08:05 +01:00
|
|
|
compile "com.mod-buildcraft:buildcraft:${config.bc_version}:dev"
|
|
|
|
|
2015-03-25 20:18:53 +01:00
|
|
|
// self compiled APIs
|
2014-09-28 18:45:55 +02:00
|
|
|
compile(group: 'api', name: 'betterstorage', version: "${config.api_betterstorage_version}")
|
|
|
|
compile(group: 'api', name: 'coloredlightscore', version: "${config.api_coloredlightscore_version}")
|
|
|
|
compile(group: 'api', name: 'craftguide', version: "${config.api_craftguide_version}")
|
|
|
|
compile(group: 'api', name: 'ic2', version: "${config.api_ic2_version}")
|
|
|
|
compile(group: 'api', name: 'immibis', version: "${config.api_immibis_version}")
|
|
|
|
compile(group: 'api', name: 'invtweaks', version: "${config.api_invtweaks_version}")
|
2015-03-24 15:35:36 +01:00
|
|
|
compile(group: 'api', name: 'mekanism', version: "${config.api_mekansim_version}", classifier: 'api')
|
2014-09-28 18:45:55 +02:00
|
|
|
compile(group: 'api', name: 'mfr', version: "${config.api_mfr_version}")
|
|
|
|
compile(group: 'api', name: 'railcraft', version: "${config.api_railcraft_version}")
|
|
|
|
compile(group: 'api', name: 'rblocks', version: "${config.api_rblocks_version}")
|
|
|
|
compile(group: 'api', name: 'rf', version: "${config.api_rf_version}")
|
|
|
|
compile(group: 'api', name: 'rotarycraft', version: "${config.api_rotarycraft_version}")
|
2015-03-25 20:18:53 +01:00
|
|
|
compile "appeng:Waila:${config.api_waila_version}:api"
|
2014-11-23 13:16:50 +01:00
|
|
|
|
|
|
|
testCompile "junit:junit:4.11"
|
2014-09-26 21:34:58 +02:00
|
|
|
}
|