diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2021-01-31 15:56:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-31 15:56:50 +0100 |
commit | 664c30141ffe3f4aff3b87d5119a82784f4eba29 (patch) | |
tree | 217177268e86d1c07b63658c101ad15d3793859d /build.gradle.kts | |
parent | c40941421085d601357e596b1e6f0c4dae529e6a (diff) | |
download | GT5-Unofficial-664c30141ffe3f4aff3b87d5119a82784f4eba29.tar.gz GT5-Unofficial-664c30141ffe3f4aff3b87d5119a82784f4eba29.tar.bz2 GT5-Unofficial-664c30141ffe3f4aff3b87d5119a82784f4eba29.zip |
Power pass upgrade (#125) (#3)
* Implemented PowerPassUpgrade
* Fixes setBlock on adv. casings
* Configured code to use TecTech implementation of PowerPass
Co-authored-by: bartimaeusnek <no-email>
Former-commit-id: 55dfeccccee09f5a1dbfc75f58426c065d1e238e
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index ec0b80d9ae..5351995bcf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -52,6 +52,9 @@ java { this.sourceCompatibility = JavaVersion.VERSION_1_8 this.targetCompatibility = JavaVersion.VERSION_1_8 } +configurations.all { + resolutionStrategy.cacheChangingModulesFor(0, TimeUnit.SECONDS) +} tasks.withType<JavaCompile> { options.encoding = "UTF-8" @@ -104,6 +107,7 @@ repositories { maven("http://default.mobiusstrip.eu/maven") { this.name = "Jabba" } maven("http://chickenbones.net/maven/") { this.name = "CodeChicken" } maven("http://www.ryanliptak.com/maven/") { this.name = "appleCore" } + maven("http://maven.tterrag.com") { this.name = "tterrag Repo" } maven("https://jitpack.io") } @@ -117,7 +121,9 @@ dependencies { //hard deps compile("net.industrial-craft:industrialcraft-2:$ic2Version:dev") //jitpack - compile("com.github.GTNewHorizons:GT5-Unofficial:appeng_transitivity-SNAPSHOT:dev") + compile("com.github.GTNewHorizons:GT5-Unofficial:experimental-SNAPSHOT:dev") { + this.isChanging = true + } //soft deps compileOnly("com.azanor.baubles:Baubles:1.7.10-1.0.1.10:deobf") compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") @@ -128,8 +134,12 @@ dependencies { compileOnly("li.cil.oc:OpenComputers:MC1.7.10-1.5.+:api") compileOnly("net.sengir.forestry:forestry_1.7.10:4.2.16.64:dev") //jitpack - compileOnly("com.github.GTNewHorizons:GalacticGregGT5:master-SNAPSHOT") - //compileOnly("com.github.Technus:TecTech:BassAddons-SNAPSHOT") + compileOnly("com.github.GTNewHorizons:GalacticGregGT5:master-SNAPSHOT") { + this.isChanging = true + } + //compileOnly("com.github.Technus:Tectech:master-SNAPSHOT") { + // this.isChanging = true + //} //Files compileOnly(fileTree("libs") { this.include("*.jar") }) |