blob: 4817147591fffa4fe90ca79ad5ea7d96bbfe0e48 [file] [log] [blame] [raw]
// because the normal default jar task has been modified to be obfuscated
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'deobf'
}
task apiJar(type: Jar) {
from sourceSets.main.output
classifier = 'api'
include 'li/cil/oc/api/**'
}
artifacts {
archives deobfJar
archives apiJar
}