Skip to content

Commit

Permalink
Bump versions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbegt committed Jan 2, 2018
1 parent 9dc8452 commit b0a43d3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
16 changes: 12 additions & 4 deletions build.gradle
Expand Up @@ -62,12 +62,20 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
deobfCompile "slimeknights.mantle:Mantle:${minecraft_version}-${mantle_version}"
deobfCompile "slimeknights:TConstruct:${minecraft_version}-${tconstruct_version}"
deobfCompile ("slimeknights.mantle:Mantle:${minecraft_version}-${mantle_version}") {
transitive = false
}
deobfCompile ("slimeknights:TConstruct:${minecraft_version}-${tconstruct_version}") {
transitive = false
}

deobfCompile "mcp.mobius.waila:Hwyla:${hwyla_version}_1.12"
deobfCompile ("mcp.mobius.waila:Hwyla:${hwyla_version}_1.12") {
transitive = false
}

deobfCompile "mezz.jei:jei_${minecraft_version_patch}:${jei_version}"
deobfCompile ("mezz.jei:jei_${minecraft_version_patch}:${jei_version}") {
transitive = false
}

//deobfCompile "MCMultiPart2:MCMultiPart-exp:${mcmultipart_version}"
}
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Expand Up @@ -3,14 +3,14 @@ mod_version=4.3.0
minecraft_version=1.12
minecraft_version_patch=1.12.2

forge_version=14.23.0.2515
mappings_version=snapshot_20170927
forge_version=14.23.1.2582
mappings_version=snapshot_20180101

mantle_version=1.3.+
tconstruct_version=2.7.+
tconstruct_version=2.8.+

jei_version=4.7.+
jei_version=4.8.+

hwyla_version=1.8.20-B35
hwyla_version=1.8.23-B38

mcmultipart_version=2.0.0_+

0 comments on commit b0a43d3

Please sign in to comment.