diff options
-rw-r--r-- | dependencies.gradle | 15 | ||||
-rw-r--r-- | repositories.gradle | 24 |
2 files changed, 12 insertions, 27 deletions
diff --git a/dependencies.gradle b/dependencies.gradle index a67528961c..d5f09fde3d 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -5,29 +5,30 @@ dependencies { compile("com.github.GTNewHorizons:StructureLib:1.0.14:dev") - compile("com.github.GTNewHorizons:NotEnoughItems:2.1.21-GTNH:dev") + compile("com.github.GTNewHorizons:NotEnoughItems:2.1.22-GTNH:dev") + compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.1:dev") compile("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev") - compileOnly("com.github.GTNewHorizons:EnderCore:0.2.5:dev") { + compileOnly("com.github.GTNewHorizons:EnderCore:0.2.6:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.3:dev") { + compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.4:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:Railcraft:9.13.4:dev") { + compileOnly("com.github.GTNewHorizons:Railcraft:9.13.5:dev") { transitive = false } compileOnly("com.github.GTNewHorizons:Galacticraft:3.0.35-GTNH:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:AppleCore:3.1.5:dev") { + compileOnly("com.github.GTNewHorizons:AppleCore:3.1.6:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.9.0.8-GTNH:dev") { + compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.9.0.9-GTNH:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-66-GTNH:dev") { + compileOnly("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-70-GTNH:dev") { transitive = false } compileOnly("com.github.GTNewHorizons:EnderIO:2.3.1.25:dev") { diff --git a/repositories.gradle b/repositories.gradle index 8e98ef095c..5fad520463 100644 --- a/repositories.gradle +++ b/repositories.gradle @@ -2,33 +2,17 @@ repositories { maven { - name = "ic2" - url = "https://maven.ic2.player.to/" - metadataSources { - mavenPom() - artifact() - } + name = "GTNH" + url = "http://jenkins.usrv.eu:8081/nexus/content/groups/public/" } maven { - name = "chickenbones" - url = "https://nexus.covers1624.net/repository/maven-hosted/" + name = "ic2" + url = "https://maven.ic2.player.to/" metadataSources { mavenPom() artifact() } } - maven { // EnderIO & EnderCore - name = 'tterrag Repo' - url = "https://maven.tterrag.com" - } - ivy { // For appeng:appliedenergistics2 only - name = 'gtnh_download_source' - artifactPattern("http://downloads.gtnewhorizons.com/Mods_for_Jenkins/[module]-[revision].[ext]") - metadataSources { - artifact() - } - } - maven { url "https://cursemaven.com" } |