The source and apis should be zips...

This commit is contained in:
Adubbz 2014-01-19 18:05:01 +11:00
parent ec0e1e31d9
commit b46ae52bf5
1 changed files with 4 additions and 4 deletions

View File

@ -119,12 +119,12 @@ task createChangelog(type: ChangelogTask) {
tasks.build.dependsOn('createChangelog')
task sourceJar(type: Jar) {
task sourceZip(type: Zip) {
from sourceSets.main.allSource
classifier = 'src'
}
task apiJar(type: Jar) {
task apiZip(type: Zip) {
from(sourceSets.main.java)
{
include "biomesoplenty/api/*"
@ -139,9 +139,9 @@ task deobfJar(type: Jar) {
}
artifacts {
archives sourceJar
archives sourceZip
archives deobfJar
archives apiJar
archives apiZip
}
uploadArchives {