aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2021-11-27 20:39:34 +0100
committerGitHub <noreply@github.com>2021-11-27 20:39:34 +0100
commit3c21a8ffe1880801fb08670c33d73cb3f99af4d0 (patch)
tree5fd4b16e3ce49a57cd1bbcf0bed2a823309599bb
parentb28e11de145a95441b5d69d3ffc14ef08f4d124a (diff)
parent854c62cd49a970216ed82b95c68879be9ea220f3 (diff)
downloadGT5-Unofficial-3c21a8ffe1880801fb08670c33d73cb3f99af4d0.tar.gz
GT5-Unofficial-3c21a8ffe1880801fb08670c33d73cb3f99af4d0.tar.bz2
GT5-Unofficial-3c21a8ffe1880801fb08670c33d73cb3f99af4d0.zip
Merge pull request #48 from bombcar/clean-libs
Clean libs and hardlibs of binary jars
-rw-r--r--build.gradle15
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