The api distribution now includes class files (Gradle sucks, let it be known by the entire world)

This commit is contained in:
Adubbz 2016-11-17 21:19:12 +11:00
parent 59cf504d44
commit 44e2f5ef7c
1 changed files with 6 additions and 5 deletions

View File

@ -112,14 +112,15 @@ task deobfJar(type: Jar) {
}
task apiJar(type: Jar) {
from(sourceSets.main.allJava) {
include 'biomesoplenty/api/**'
}
from (sourceSets.main.output) {
from(sourceSets.main.allJava) {
include 'biomesoplenty/api/**'
}
from (sourceSets.main.output) {
include 'LICENSE.txt'
include 'biomesoplenty/api/**'
}
classifier = 'api'
classifier = 'api'
}
task listOutputs << {