Updated dependencies.
This commit is contained in:
parent
c4a0894802
commit
a7d302115b
1 changed files with 14 additions and 13 deletions
27
build.gradle
27
build.gradle
|
@ -34,6 +34,7 @@ repositories {
|
||||||
url = "http://maven.modmuss50.me/"
|
url = "http://maven.modmuss50.me/"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
|
// JEI, TiC
|
||||||
name "TiC"
|
name "TiC"
|
||||||
url "http://dvs1.progwml6.com/files/maven"
|
url "http://dvs1.progwml6.com/files/maven"
|
||||||
}
|
}
|
||||||
|
@ -42,6 +43,7 @@ repositories {
|
||||||
url "http://maven.amadornes.com/"
|
url "http://maven.amadornes.com/"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
|
// CraftTweaker2
|
||||||
name "Jared"
|
name "Jared"
|
||||||
url "http://maven.blamejared.com/"
|
url "http://maven.blamejared.com/"
|
||||||
}
|
}
|
||||||
|
@ -54,7 +56,7 @@ repositories {
|
||||||
url "http://maven.tterrag.com/"
|
url "http://maven.tterrag.com/"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
//IC2
|
// IC2
|
||||||
name = "ic2"
|
name = "ic2"
|
||||||
url = "http://maven.ic2.player.to/"
|
url = "http://maven.ic2.player.to/"
|
||||||
}
|
}
|
||||||
|
@ -68,6 +70,7 @@ repositories {
|
||||||
url "http://chickenbones.net/maven/"
|
url "http://chickenbones.net/maven/"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
|
// CoFH
|
||||||
name 'Covers'
|
name 'Covers'
|
||||||
url "http://maven.covers1624.net/"
|
url "http://maven.covers1624.net/"
|
||||||
}
|
}
|
||||||
|
@ -90,7 +93,7 @@ if (ENV.BUILD_NUMBER) {
|
||||||
}
|
}
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
version = "1.12.2-14.23.1.2581"
|
version = "1.12.2-14.23.1.2590"
|
||||||
mappings = "snapshot_20171003"
|
mappings = "snapshot_20171003"
|
||||||
replace "@MODVERSION@", project.version
|
replace "@MODVERSION@", project.version
|
||||||
useDepAts = true
|
useDepAts = true
|
||||||
|
@ -107,24 +110,22 @@ group = 'TechReborn'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
//Some dep we use wants the older jei, so this ingores it. We grab the latest anyway, so it shoudnt cause any issues.
|
//Some dep we use wants the older jei, so this ingores it. We grab the latest anyway, so it shoudnt cause any issues.
|
||||||
def withoutOldJEI = { exclude module: 'jei_1.12' }
|
def withoutOldJEI = { exclude module: 'jei_1.12.2' }
|
||||||
|
|
||||||
deobfCompile('RebornCore:RebornCore-1.12.2:+:universal') {
|
deobfCompile('RebornCore:RebornCore-1.12.2:+:universal') {
|
||||||
transitive = false
|
transitive = false
|
||||||
}
|
}
|
||||||
deobfCompile "mezz.jei:jei_1.12.2:+"
|
|
||||||
compile "mcp.mobius.waila:Hwyla:+"
|
compile "mcp.mobius.waila:Hwyla:+"
|
||||||
compile "net.darkhax.tesla:Tesla-1.12:1.0.61:deobf"
|
compile "net.darkhax.tesla:Tesla-1.12:1.0.61:deobf"
|
||||||
|
compile "CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.0.12.323"
|
||||||
deobfCompile "mcjty.theoneprobe:TheOneProbe-1.12:1.12-1.4.19-11"
|
|
||||||
compile "CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.0.9.289", withoutOldJEI
|
|
||||||
deobfCompile 'net.industrial-craft:industrialcraft-2:2.8.31-ex112', withoutOldJEI
|
|
||||||
deobfCompile 'cofh:ThermalDynamics:1.12.2-2.3.8.15:universal'
|
|
||||||
deobfCompile 'cofh:ThermalExpansion:1.12.2-5.3.8.33:universal'
|
|
||||||
|
|
||||||
deobfCompile 'MCMultiPart2:MCMultiPart:2.4.1'
|
|
||||||
|
|
||||||
compile name: 'buildcraft', version: '7.99.14', ext: 'jar'
|
compile name: 'buildcraft', version: '7.99.14', ext: 'jar'
|
||||||
|
|
||||||
|
deobfCompile "mezz.jei:jei_1.12.2:+"
|
||||||
|
deobfCompile "mcjty.theoneprobe:TheOneProbe-1.12:1.12-1.4.19-11"
|
||||||
|
deobfCompile 'net.industrial-craft:industrialcraft-2:2.8.39-ex112'
|
||||||
|
deobfCompile 'cofh:ThermalDynamics:1.12.2-2.3.9.3:universal', withoutOldJEI
|
||||||
|
deobfCompile 'cofh:ThermalExpansion:1.12.2-5.3.9.9:universal', withoutOldJEI
|
||||||
|
deobfCompile 'MCMultiPart2:MCMultiPart:2.4.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue