From 90e2815401af4f54257d44826aed270a233be8fc Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Tue, 18 Jan 2022 21:18:53 -0800 Subject: update to explicit dependencies Former-commit-id: d8074879dbcc875fe64f6e1c8614639538fd6026 --- dependencies.gradle | 25 +++++++++++++++++++------ 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 @@ -1,6 +1,10 @@ // Add any additional repositories for your dependencies here repositories { + maven { + name = "GTNH Maven" + url = "http://jenkins.usrv.eu:8081/nexus/content/groups/public/" + } maven { name "OpenComputers Repo" url = "http://maven.cil.li/" -- cgit