Add FMP to gradle in prep for the cable rewrite.

This commit is contained in:
modmuss50 2017-04-11 12:16:16 +01:00
parent c678fe7f9a
commit 39cc0f9452
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

View file

@ -65,6 +65,10 @@ repositories {
name "TehNut"
url "http://tehnut.info/maven/"
}
maven {
name 'CB Repo'
url "http://chickenbones.net/maven/"
}
}
configurations {
@ -111,7 +115,15 @@ dependencies {
//deobfCompile "slimeknights.mantle:Mantle:1.10.2-1.0.0.jenkins170"
deobfCompile "mcjty.theoneprobe:TheOneProbe:1.11-1.3.3-46"
compile "CraftTweaker:CraftTweaker:1.11.2-3.0.24"
compile ("codechicken:CodeChickenLib:1.11.2-+:deobf"){
transitive = false
}
compile ("codechicken:NotEnoughItems:1.11.2-+:deobf"){
transitive = false
}
compile ("codechicken:ForgeMultipart:1.11.2-+:deobf"){
transitive = false
}
compileOnly 'net.industrial-craft:industrialcraft-2:2.6.129-ex110'
}