diff options
author | Johann Bernhardt <johann.bernhardt@tum.de> | 2021-12-01 17:13:50 +0100 |
---|---|---|
committer | Johann Bernhardt <johann.bernhardt@tum.de> | 2021-12-01 17:13:50 +0100 |
commit | 40dfb5b69d194cef2c2c2323a4063eb62d5b4ca8 (patch) | |
tree | 088204193d430f2dbd00f490a2b328abf9039dc8 | |
parent | bed9ce63b820d2bc973d1580daa19bceb8c0bb83 (diff) | |
download | GT5-Unofficial-40dfb5b69d194cef2c2c2323a4063eb62d5b4ca8.tar.gz GT5-Unofficial-40dfb5b69d194cef2c2c2323a4063eb62d5b4ca8.tar.bz2 GT5-Unofficial-40dfb5b69d194cef2c2c2323a4063eb62d5b4ca8.zip |
Move EnderCore to compileOnly
-rw-r--r-- | dependencies.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dependencies.gradle b/dependencies.gradle index 6b4c35fced..f754d36254 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -3,10 +3,12 @@ dependencies { compile("com.github.GTNewHorizons:StructureLib:master-SNAPSHOT:dev") compile("com.github.GTNewHorizons:NotEnoughItems:master-SNAPSHOT:dev") - compile("com.github.GTNewHorizons:EnderCore:master-SNAPSHOT:dev") compile("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev") + compileOnly("com.github.GTNewHorizons:EnderCore:master-SNAPSHOT:dev") { + transitive = false + } compileOnly("com.github.GTNewHorizons:ForestryMC:master-SNAPSHOT:dev") { transitive = false } |