diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2021-05-29 23:52:15 +0800 |
---|---|---|
committer | Glease <4586901+Glease@users.noreply.github.com> | 2021-07-30 14:34:33 +0800 |
commit | 546b42d7440839477455b818133d80221c70c582 (patch) | |
tree | 5924c7cc0134de96bbc3c5995e9e4fae4dde91db /build.gradle | |
parent | da3421547afadc49938b5b6a7f9a9679afa1d570 (diff) | |
download | GT5-Unofficial-546b42d7440839477455b818133d80221c70c582.tar.gz GT5-Unofficial-546b42d7440839477455b818133d80221c70c582.tar.bz2 GT5-Unofficial-546b42d7440839477455b818133d80221c70c582.zip |
Initial StructureLib integration
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 8949f060c3..a69dd021b5 100644 --- a/build.gradle +++ b/build.gradle @@ -55,7 +55,7 @@ repositories { } maven { name = "chickenbones" - url = "http://chickenbones.net/maven/" + url = "https://nexus.covers1624.net/repository/maven-hosted/" } maven { name = "ic2, forestry" @@ -84,12 +84,17 @@ repositories { name = 'gtnh_download_source' artifactPattern("http://downloads.gtnewhorizons.com/Mods_for_Jenkins/[module]-[revision].[ext]") } + maven { + name = "jitpack.io" + url = "https://jitpack.io" + } } dependencies { //Hard dep to start (Without this, it wont compile nor start) compile 'com.google.code.findbugs:jsr305:1.3.9' compile "net.industrial-craft:industrialcraft-2:${config.ic2.version}:dev" + compile ("com.github.GTNewHorizons:StructureLib:${config.structurelib.version}:deobf") //Hard dep to compile (Without this, it wont compile, not even as library) api "appeng:appliedenergistics2:${config.ae2.version}:dev" |