diff options
author | Jason Mitchell <mitchej@gmail.com> | 2022-01-18 21:18:53 -0800 |
---|---|---|
committer | Jason Mitchell <mitchej@gmail.com> | 2022-01-18 21:18:53 -0800 |
commit | 90e2815401af4f54257d44826aed270a233be8fc (patch) | |
tree | 95f40d78a842fe20d4c4957dbcb83d8660443484 | |
parent | b83a44344edc518878103122570939dcf9492cbc (diff) | |
download | GT5-Unofficial-90e2815401af4f54257d44826aed270a233be8fc.tar.gz GT5-Unofficial-90e2815401af4f54257d44826aed270a233be8fc.tar.bz2 GT5-Unofficial-90e2815401af4f54257d44826aed270a233be8fc.zip |
update to explicit dependencies
Former-commit-id: d8074879dbcc875fe64f6e1c8614639538fd6026
-rw-r--r-- | dependencies.gradle | 25 | ||||
-rw-r--r-- | repositories.gradle | 4 |
2 files changed, 23 insertions, 6 deletions
diff --git a/dependencies.gradle b/dependencies.gradle index 29aaa18377..09f3094a33 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,24 +1,37 @@ // Add your dependencies here dependencies { - compile("com.github.GTNewHorizons:TecTech:master-SNAPSHOT:dev") - compile("com.github.GTNewHorizons:GalacticGregGT5:master-SNAPSHOT:dev") { + compile("com.github.GTNewHorizons:GT5-Unofficial:5.09.40.18:dev") + compile("com.github.GTNewHorizons:StructureLib:1.0.14:dev") + compile("com.github.GTNewHorizons:TecTech:4.10.15:dev") + compile("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev") + compile("com.github.GTNewHorizons:NotEnoughItems:2.1.22-GTNH:dev") + compile("com.github.GTNewHorizons:TinkersConstruct:1.9.0.10-GTNH:dev") + compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.1:dev") + compile("com.github.GTNewHorizons:CodeChickenCore:1.1.3:dev") + compile("com.github.GTNewHorizons:Galacticraft:3.0.36-GTNH:dev") + + compile("com.github.GTNewHorizons:GalacticGregGT5:1.0.6:dev") { exclude group:"com.github.GTNewHorizons", module:"bartworks" } + + compileOnly("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-70-GTNH:dev") { + transitive = false + } - compileOnly("com.github.GTNewHorizons:AppleCore:master-SNAPSHOT:dev") { + compileOnly("com.github.GTNewHorizons:AppleCore:3.1.6:dev") { transitive = false } compileOnly("com.github.GTNewHorizons:TinkersGregworks:master-SNAPSHOT:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:ForestryMC:master-SNAPSHOT:api") { + compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.4:api") { transitive = false } - compileOnly("com.github.GTNewHorizons:Railcraft:master-SNAPSHOT:api") { + compileOnly("com.github.GTNewHorizons:Railcraft:9.13.5:api") { transitive = false } - compileOnly("com.github.GTNewHorizons:EnderIO:master-SNAPSHOT:api") { + compileOnly("com.github.GTNewHorizons:EnderIO:2.3.1.27:api") { transitive = false } diff --git a/repositories.gradle b/repositories.gradle index 130197c8aa..a161653e0f 100644 --- a/repositories.gradle +++ b/repositories.gradle @@ -2,6 +2,10 @@ repositories { maven { + name = "GTNH Maven" + url = "http://jenkins.usrv.eu:8081/nexus/content/groups/public/" + } + maven { name "OpenComputers Repo" url = "http://maven.cil.li/" } |