From 9c5c016976b2e4f762ade083774a58da926c06b9 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Tue, 8 Sep 2015 13:04:05 +0100 Subject: [PATCH] Added forestry api and removed needed source files in output jar --- build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 95ef83966..c5cf93713 100644 --- a/build.gradle +++ b/build.gradle @@ -108,6 +108,7 @@ dependencies { compile "qmunity:QmunityLib:0.1.+:deobf" compile "com.pahimar.ee3:EquivalentExchange3:1.7.10-0.3.505:dev" compile "net.sengir.forestry:forestry_1.7.10:3.6.3.20:dev" + shade "net.sengir.forestry:forestry_1.7.10:3.6.3.20:api" compile "tconstruct:TConstruct:1.7.10-1.8.5.build958:deobf" compile "mods.natura:natura:1.7.10-98.6a6cca1:deobf" compile "mantle:Mantle:1.7.10-0.3.2.jenkins187:deobf" @@ -155,7 +156,9 @@ jar { classifier = 'universal' configurations.shade.each { dep -> from(project.zipTree(dep)){ - exclude 'META-INF', 'META-INF/**' + include 'ic2/api/' + include 'forestry/api/fuels/' + exclude 'META-INF', 'META-INF/**', '**/*.java' } } }