From fff292587700a709dac6b8888444c67735f2194d Mon Sep 17 00:00:00 2001 From: Raoul Van den Berge Date: Tue, 13 Sep 2016 22:38:00 +0200 Subject: [PATCH] Another attempt at obf jar building --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index cf5ee43c4..eba0e6d79 100755 --- a/build.gradle +++ b/build.gradle @@ -72,11 +72,15 @@ processResources { } } -task obfJar(type: Jar, dependsOn: 'reobfJar') { +task obfJar(type: Jar) { from sourceSets.main.output classifier 'obf' } +reobf { + reobf obfJar +} + task deobfJar(type: Jar) { from sourceSets.main.output classifier 'deobf'