diff options
author | bombcar <github@bombcar.com> | 2021-12-02 10:47:34 -0600 |
---|---|---|
committer | bombcar <github@bombcar.com> | 2021-12-02 10:47:34 -0600 |
commit | 55d3c3373011c9053038fa1baa3b67a4b4861f9d (patch) | |
tree | 12be5dd95772bcecf5fc700f7006b6d5661abdeb /build.gradle | |
parent | 10c8a2a18418d90fb50e52cc2778399fb87cfeab (diff) | |
download | GT5-Unofficial-55d3c3373011c9053038fa1baa3b67a4b4861f9d.tar.gz GT5-Unofficial-55d3c3373011c9053038fa1baa3b67a4b4861f9d.tar.bz2 GT5-Unofficial-55d3c3373011c9053038fa1baa3b67a4b4861f9d.zip |
Update dependencies to use ours where possible
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 34 |
1 files changed, 13 insertions, 21 deletions
diff --git a/build.gradle b/build.gradle index b9aafcb31a..54a5f62eeb 100644 --- a/build.gradle +++ b/build.gradle @@ -113,8 +113,7 @@ repositories { url = "https://jitpack.io" } maven { - name = "appleCore" - url = "http://www.ryanliptak.com/maven/" + url "https://cursemaven.com" } } @@ -147,39 +146,32 @@ processResources } dependencies { - compile "appeng:appliedenergistics2:${config.ae2.version}:dev" + compile "com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:master-SNAPSHOT:dev" // Used for productive reflection without class loading. (0.9.12 has no reliance on Guava either) //shade group: 'org.reflections', name: 'reflections', version: '0.9.12' //shade group: 'org.dom4j', name: 'dom4j', version: '2.1.1' //compile group: 'org.javassist', name: 'javassist', version: '3.26.0-GA' - - implementation 'com.github.GTNewHorizons:GT5-Unofficial:master-SNAPSHOT' - compile ("com.github.GTNewHorizons:StructureLib:${config.structurelib.version}:deobf") + implementation 'com.github.GTNewHorizons:GT5-Unofficial:master-SNAPSHOT:dev' + compile "com.github.GTNewHorizons:StructureLib:master-SNAPSHOT:dev" - provided "net.industrial-craft:industrialcraft-2:${config.ic2.version}:dev" - //compile "ic2:IC2Classic:1.2.1.8:dev" - Does not mirror internal class structure or visibility of IC2, won't ever compile. + provided "net.industrial-craft:industrialcraft-2:${config.ic2.version}:dev" - compile "mcp.mobius.waila:Waila:1.5.11-RC2-NONEI_1.7.10:dev" - compile "codechicken:CodeChickenLib:1.7.10-1.1.3.140:dev" - compile "codechicken:CodeChickenCore:1.7.10-1.0.7.47:dev" - compile "codechicken:NotEnoughItems:1.7.10-1.0.5.120:dev" + compile "com.github.GTNewHorizons:Waila:master-SNAPSHOT:dev" + compile "com.github.GTNewHorizons:NotEnoughItems:master-SNAPSHOT:dev" compile "api.player:PlayerAPI:1.7.10-1.4" compile "minetweaker:MineTweaker3:1.7.10-3.0.10:dev-full" + + compile "com.github.GTNewHorizons:EnderIO:master-SNAPSHOT:dev" - compile "com.enderio.core:EnderCore:1.7.10-0.2.0.39_beta:dev" - compile "com.enderio:EnderIO:1.7.10-2.3.0.430_beta:dev" - - compile "cofh:CoFHCore:1.7.10R3.0.4:dev" - compile "cofh:CoFHLib:1.7.10R3.0.3:dev" + compile "curse.maven:cofh-core-69162:2388750" + compile "curse.maven:cofh-lib-220333:2388748" - // Forestry .jar from repository is obfuscated and won't compile, so use local unobfuscated one. - //compileOnly "net.sengir.forestry:forestry_1.7.10:4.4.0.0:dev" - implementation 'com.github.GTNewHorizons:ForestryMC:master-SNAPSHOT' + implementation 'com.github.GTNewHorizons:ForestryMC:master-SNAPSHOT:dev' - compileOnly "mods.railcraft:Railcraft_1.7.10:9.12.3.0:dev" + compileOnly "com.github.GTNewHorizons:Railcraft:master-SNAPSHOT:dev" implementation 'com.github.GTNewHorizons:SC2:master-SNAPSHOT' compileOnly "openmods:OpenModsLib:1.7.10-0.10:deobf" |