diff options
author | Tom Dickson <github@bombcar.com> | 2021-11-25 08:50:03 -0600 |
---|---|---|
committer | Tom Dickson <github@bombcar.com> | 2021-11-25 08:50:03 -0600 |
commit | 854c62cd49a970216ed82b95c68879be9ea220f3 (patch) | |
tree | 89e4c9abc38bc2093ce6888b049c9f8777ce9884 | |
parent | 81bc9e0e2dc60959acfce307ba5816a2eafe15b5 (diff) | |
download | GT5-Unofficial-854c62cd49a970216ed82b95c68879be9ea220f3.tar.gz GT5-Unofficial-854c62cd49a970216ed82b95c68879be9ea220f3.tar.bz2 GT5-Unofficial-854c62cd49a970216ed82b95c68879be9ea220f3.zip |
remove libs/ and add dependencies to build.gradle
-rw-r--r-- | build.gradle | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index d1833ac846..d2c7425816 100644 --- a/build.gradle +++ b/build.gradle @@ -11,9 +11,13 @@ buildscript { name = "sonatype" url = "https://oss.sonatype.org/content/repositories/snapshots/" } + maven { + name = "jitpack" + url = "https://jitpack.io" + } } dependencies { - classpath "net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT" + classpath "com.github.GTNewHorizons:ForgeGradle:1.2.4" } } @@ -154,7 +158,7 @@ dependencies { // compile("com.github.GTNewHorizons:GT5-Unofficial:experimental-SNAPSHOT:dev") { // setChanging(true) // } - compile files('libs/gregtech-5.09.37.05-dev.jar') + implementation 'com.github.GTNewHorizons:GT5-Unofficial:experimental-SNAPSHOT' compile ("com.github.GTNewHorizons:StructureLib:${config.structurelib.version}:deobf") provided "net.industrial-craft:industrialcraft-2:${config.ic2.version}:dev" @@ -176,10 +180,10 @@ dependencies { // Forestry .jar from repository is obfuscated and won't compile, so use local unobfuscated one. //compileOnly "net.sengir.forestry:forestry_1.7.10:4.4.0.0:dev" - compileOnly files('libs/forestry_1.7.10-4.4.0.0-dev.jar') + implementation 'com.github.GTNewHorizons:ForestryMC:master-SNAPSHOT' compileOnly "mods.railcraft:Railcraft_1.7.10:9.12.3.0:dev" - compileOnly files('libs/StevesCarts2.0.0.b18-deobf.jar') + implementation 'com.github.GTNewHorizons:SC2:master-SNAPSHOT' compileOnly "openmods:OpenModsLib:1.7.10-0.10:deobf" compileOnly "openblocks:OpenBlocks:1.7.10-1.6-1.7.10:deobf" @@ -210,5 +214,4 @@ task generateDictionaries(type: JavaExec) { description = "Generates the dictionaries for Proguard" classpath = sourceSets.main.runtimeClasspath main = "gtPlusPlus.GenerateDictionaries" -} - +}
\ No newline at end of file |