Another attempt at obf jar building

This commit is contained in:
Raoul Van den Berge
2016-09-13 22:38:00 +02:00
parent 6eaa13741c
commit fff2925877

View File

@@ -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'