diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2020-11-03 16:18:26 +0100 |
---|---|---|
committer | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2020-11-03 16:18:26 +0100 |
commit | d7f0d4575188c477e60184a08c882c380a1805cb (patch) | |
tree | fcc54b4e1e0407f6f766e27b1cd5d8108091b938 /build.gradle.kts | |
parent | 87c3702289ff4eddd345906dbf24c2f5fdc24674 (diff) | |
download | GT5-Unofficial-d7f0d4575188c477e60184a08c882c380a1805cb.tar.gz GT5-Unofficial-d7f0d4575188c477e60184a08c882c380a1805cb.tar.bz2 GT5-Unofficial-d7f0d4575188c477e60184a08c882c380a1805cb.zip |
Fixes a bug where only 1Item is in stack
Former-commit-id: c5b014c5f18f083be19bfb625436db89f2a59242
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index c5cb8b82db..fe8e52a958 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -115,7 +115,8 @@ dependencies { val enderioVersion: String by project //hard deps compile("net.industrial-craft:industrialcraft-2:$ic2Version:dev") - //compile("com.github.GTNH2:GT5-Unofficial:experimental-SNAPSHOT:dev") //broken jitpack.io dep + //jitpack + compile("com.github.GTNewHorizons:GT5-Unofficial:experimental-SNAPSHOT:dev") //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") @@ -125,7 +126,10 @@ dependencies { compileOnly("micdoodle8.mods:Galacticraft-Planets:$galacticraftVersion:Dev") 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") + //Files compileOnly(fileTree("libs") { this.include("*.jar") }) //CoreLibs for compile-age |