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'