Updates, and re added support
This commit is contained in:
parent
158f68c4a8
commit
e680f3fb1f
5 changed files with 93 additions and 87 deletions
36
build.gradle
36
build.gradle
|
@ -50,7 +50,7 @@ repositories {
|
|||
}
|
||||
ivy {
|
||||
name = 'ThaumCraft 4 API'
|
||||
artifactPattern 'https://dl.dropboxusercontent.com/u/47135879/[module]-1.8.8-[revision]-[classifier].[ext]'
|
||||
artifactPattern 'https://dl.dropboxusercontent.com/u/47135879/[module]-1.8.9-[revision]-[classifier].[ext]'
|
||||
}
|
||||
ivy {
|
||||
name "MineTweaker3"
|
||||
|
@ -58,9 +58,13 @@ repositories {
|
|||
artifactPattern "http://www.blamejared.com/content/[module]-[classifier]-Full-[revision].[ext]" //This is a forked version of it to allow 1.8.8 support.
|
||||
}
|
||||
ivy {
|
||||
name "BuildCraft"
|
||||
artifactPattern "https://github.com/AlexIIL/BuildCraft/releases/download/[revision]/[module]-[classifier].[ext]"
|
||||
}
|
||||
name "BuildCraft"
|
||||
artifactPattern "https://github.com/AlexIIL/BuildCraft/releases/download/[revision]/[module]-[classifier].[ext]"
|
||||
}
|
||||
maven {
|
||||
name = "Amadornes"
|
||||
url "http://maven.amadornes.com/"
|
||||
}
|
||||
}
|
||||
|
||||
configurations {
|
||||
|
@ -86,7 +90,20 @@ minecraft {
|
|||
|
||||
group = 'TechReborn'
|
||||
|
||||
def grabDep(name, url){
|
||||
ant.get(src: url, dest: 'dep')
|
||||
file("dep/" + url.substring(url.lastIndexOf("/"))).renameTo(file("dep/" + name + ".jar"))
|
||||
}
|
||||
|
||||
dependencies {
|
||||
def f = new File('dep/')
|
||||
if(f.exists()){
|
||||
f.delete()
|
||||
}
|
||||
f.mkdirs()
|
||||
if(!f.exists()){
|
||||
f.mkdir()
|
||||
}
|
||||
// compile 'net.industrial-craft:industrialcraft-2:2.2.796-experimental:dev'
|
||||
// shade 'net.industrial-craft:industrialcraft-2:2.2.796-experimental:api'
|
||||
// compile "codechicken:CodeChickenLib:1.7.10-1.1.3.140:dev"
|
||||
|
@ -96,7 +113,6 @@ dependencies {
|
|||
compile ("mcp.mobius.waila:Waila:1.6.0-B3_1.8.8:dev") {
|
||||
exclude group: 'mcp.mobius.waila'
|
||||
}
|
||||
// compile name: 'buildcraft', version: 'mc1.8.8-alpha-11', classifier: "-0.11-alpha-dev", ext: 'jar'
|
||||
// compile "qmunity:QmunityLib:0.2.+:deobf"
|
||||
// compile "com.pahimar.ee3:EquivalentExchange3:1.7.10-0.3.507:dev"
|
||||
// compile "net.sengir.forestry:forestry_1.7.10:4.2.0.47:dev"
|
||||
|
@ -105,12 +121,18 @@ dependencies {
|
|||
// compile "mods.natura:natura:1.7.10-107.779621d:deobf"
|
||||
compile "slimeknights.mantle:Mantle:1.8.8-0.6.jenkins60:deobf"
|
||||
compile "com.github.glitchfiend.biomesoplenty:BiomesOPlenty:1.8.9-3.0.0.1923:deobf"
|
||||
//compile 'Azanor:Thaumcraft:5.0.3:deobf@jar'
|
||||
compile "com.github.azanor:baubles:1.1.2.0:deobf@jar"
|
||||
compile 'Azanor:Thaumcraft:5.1.6:deobf@jar'
|
||||
compile "com.github.azanor:baubles:1.1.3.0:deobf@jar"
|
||||
compile name: "CraftTweaker", version: "1.8.8-3.0.0", classifier: "Dev"
|
||||
// shade 'IC2-Classic-API-STANDALONE:IC2-Classic-API-STANDALONE:1.1.0.19-5:api'
|
||||
deobfCompile 'RebornCore:RebornCore-1.8.9:1.4.4.+:universal'
|
||||
deobfCompile "mezz.jei:jei_1.8.9:2.27.+"
|
||||
deobfCompile 'MCMultiPart:MCMultiPart:1.0.6:universal'
|
||||
|
||||
println("Downloading dependencies that have no maven :/")
|
||||
//This is done becuase
|
||||
grabDep('buildcraft-7.2.0-pre12', 'http://modmuss50.me/files/buildcraft-7.2.0-pre12-deobf.jar')
|
||||
compile files("dep/buildcraft-7.2.0-pre12.jar")
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue