diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 1a1a61aa64..d8aac059a3 100644 --- a/build.gradle +++ b/build.gradle @@ -43,6 +43,12 @@ minecraft { replace "GRADLETOKEN_VERSION", "${config.tectech.version}" } +configurations { + provided + embedded + compile.extendsFrom provided, embedded +} + repositories { maven { name 'UsrvDE' @@ -52,11 +58,21 @@ repositories { name = "ic2" url = "http://maven.ic2.player.to/" } + ivy { + name 'CoFHLib' + artifactPattern "http://addons-origin.cursecdn.com/files/${config.cofhlib.cf}/[module]-[revision].[ext]" + } + ivy { + name 'CoFHCore' + artifactPattern "http://addons-origin.cursecdn.com/files/${config.cofhcore.cf}/[module]-[revision].[ext]" + } } dependencies { compile "eu.usrv:YAMCore:${config.minecraft.version}-${config.yamcore.version}:deobf" compile "net.industrial-craft:industrialcraft-2:${config.ic2.version}:dev" + provided name: 'CoFHLib', version: config.cofhlib.version, ext: 'jar' + provided name: 'CoFHCore', version: config.cofhcore.version, ext: 'jar' } task getGregTech(type: Download) { |