diff options
author | miozune <miozune@gmail.com> | 2022-12-12 15:15:43 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 07:15:43 +0100 |
commit | 271b177799b1d9ba7d66c575caf4b7bccd6b9357 (patch) | |
tree | 8eef75e928feaa3d6cddb0949921c3ef121be791 /dependencies.gradle | |
parent | 889d0fc3c5a1235aaac6df9be02d496078cfe44f (diff) | |
download | GT5-Unofficial-271b177799b1d9ba7d66c575caf4b7bccd6b9357.tar.gz GT5-Unofficial-271b177799b1d9ba7d66c575caf4b7bccd6b9357.tar.bz2 GT5-Unofficial-271b177799b1d9ba7d66c575caf4b7bccd6b9357.zip |
Rewrite GUIs with ModularUI (#110)
Diffstat (limited to 'dependencies.gradle')
-rw-r--r-- | dependencies.gradle | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/dependencies.gradle b/dependencies.gradle index d8a69c0592..5408da4db0 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -2,21 +2,19 @@ dependencies { - compile('com.github.GTNewHorizons:GT5-Unofficial:5.09.41.148:dev') - compile('com.github.GTNewHorizons:StructureLib:1.1.7:dev') - compile('com.github.GTNewHorizons:bartworks:0.5.94:dev') { - exclude group:"com.github.GTNewHorizons", module:"SpongePoweredMixin" - exclude group:"com.github.GTNewHorizons", module:"SpongeMixins" - } - compile('com.github.GTNewHorizons:NotEnoughItems:2.2.28-GTNH:dev') - compile('com.github.GTNewHorizons:TecTech:5.0.37:dev') + compile('com.github.GTNewHorizons:GT5-Unofficial:5.09.41.161:dev') + compile('com.github.GTNewHorizons:StructureLib:1.1.12:dev') + compile("com.github.GTNewHorizons:ModularUI:1.0.27:dev") + compile('com.github.GTNewHorizons:bartworks:0.5.121:dev') + compile('com.github.GTNewHorizons:NotEnoughItems:2.3.16-GTNH:dev') + compile('com.github.GTNewHorizons:TecTech:5.0.54:dev') compile('thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev') compile('net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev') compileOnly('com.github.GTNewHorizons:EnderCore:0.2.6:dev') {transitive = false} compileOnly('com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-97-GTNH:dev') {transitive = false} - compileOnly('com.github.GTNewHorizons:GTplusplus:1.7.76:dev') {transitive = false} + compileOnly('com.github.GTNewHorizons:GTplusplus:1.7.150:dev') {transitive = false} compileOnly('com.github.GTNewHorizons:AppleCore:3.1.9:dev') {transitive = false} compileOnly('com.github.GTNewHorizons:ForestryMC:4.4.12:dev') {transitive = false} compileOnly('com.github.GTNewHorizons:Railcraft:9.13.9:dev') {transitive = false} @@ -29,7 +27,7 @@ dependencies { runtime('com.github.GTNewHorizons:NewHorizonsCoreMod:1.9.106:dev') runtime('com.github.GTNewHorizons:ForestryMC:4.4.12:dev') - runtime('com.github.GTNewHorizons:GTplusplus:1.7.76:dev') + runtime('com.github.GTNewHorizons:GTplusplus:1.7.150:dev') //compileOnly('com.github.GTNewHorizons:Avaritia:1.28) } |