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/"
|
||||
}
|
||||
maven {
|
||||
// JEI, TiC
|
||||
name "TiC"
|
||||
url "http://dvs1.progwml6.com/files/maven"
|
||||
}
|
||||
|
@ -42,6 +43,7 @@ repositories {
|
|||
url "http://maven.amadornes.com/"
|
||||
}
|
||||
maven {
|
||||
// CraftTweaker2
|
||||
name "Jared"
|
||||
url "http://maven.blamejared.com/"
|
||||
}
|
||||
|
@ -54,7 +56,7 @@ repositories {
|
|||
url "http://maven.tterrag.com/"
|
||||
}
|
||||
maven {
|
||||
//IC2
|
||||
// IC2
|
||||
name = "ic2"
|
||||
url = "http://maven.ic2.player.to/"
|
||||
}
|
||||
|
@ -68,6 +70,7 @@ repositories {
|
|||
url "http://chickenbones.net/maven/"
|
||||
}
|
||||
maven {
|
||||
// CoFH
|
||||
name 'Covers'
|
||||
url "http://maven.covers1624.net/"
|
||||
}
|
||||
|
@ -90,7 +93,7 @@ if (ENV.BUILD_NUMBER) {
|
|||
}
|
||||
|
||||
minecraft {
|
||||
version = "1.12.2-14.23.1.2581"
|
||||
version = "1.12.2-14.23.1.2590"
|
||||
mappings = "snapshot_20171003"
|
||||
replace "@MODVERSION@", project.version
|
||||
useDepAts = true
|
||||
|
@ -107,24 +110,22 @@ group = 'TechReborn'
|
|||
|
||||
dependencies {
|
||||
//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') {
|
||||
transitive = false
|
||||
}
|
||||
deobfCompile "mezz.jei:jei_1.12.2:+"
|
||||
compile "mcp.mobius.waila:Hwyla:+"
|
||||
compile "net.darkhax.tesla:Tesla-1.12:1.0.61:deobf"
|
||||
|
||||
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 "CraftTweaker2:CraftTweaker2-MC1120-Main:1.12-4.0.12.323"
|
||||
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