fixed that the deobf & api jar had everything duplicated...

This commit is contained in:
XDjackieXD 2016-01-06 05:07:32 +01:00
parent c43f52b777
commit 8ec46efe28

View file

@ -63,14 +63,17 @@ processResources {
}
}
sourceSets {
main {
output.resourcesDir = output.classesDir
}
}
// Why is OpenComputers one of the only mods that has a readable build.gradle? (Thank you Sangar!) :D
jar {}
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'dev'
}
task apiJar(type: Jar) {
from sourceSets.main.output
from sourceSets.main.java
classifier = 'api'
include 'de/ellpeck/actuallyadditions/api/**'
}