Removed the api distribution, developers should instead refer to the deobf/sources distributions

This commit is contained in:
Adubbz 2014-12-01 09:03:03 +11:00
parent 65e685c34c
commit f6816e4110
2 changed files with 0 additions and 9 deletions

View File

@ -104,14 +104,6 @@ task sourceJar(type: Jar) {
classifier = 'sources'
}
task apiZip(type: Zip) {
from(sourceSets.main.java)
{
include "biomesoplenty/api/*"
}
classifier = 'api'
}
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'deobf'
@ -120,7 +112,6 @@ task deobfJar(type: Jar) {
artifacts {
archives sourceJar
archives deobfJar
archives apiZip
}
uploadArchives {