This should be a jar not a zip
This commit is contained in:
parent
ea99f354ad
commit
32ebd35656
1 changed files with 3 additions and 3 deletions
|
@ -132,7 +132,7 @@ jar {
|
|||
classifier = 'universal'
|
||||
}
|
||||
|
||||
task apiZip(type: Zip) {
|
||||
task apiJar(type: Jar) {
|
||||
from(sourceSets.main.java) {
|
||||
include 'techreborn/api/**'
|
||||
appendix = 'api'
|
||||
|
@ -140,12 +140,12 @@ task apiZip(type: Zip) {
|
|||
}
|
||||
}
|
||||
|
||||
apiZip.mustRunAfter deobfJar
|
||||
apiJar.mustRunAfter deobfJar
|
||||
|
||||
artifacts {
|
||||
archives sourceJar
|
||||
archives deobfJar
|
||||
archives apiZip
|
||||
archives apiJar
|
||||
}
|
||||
|
||||
uploadArchives {
|
||||
|
|
Loading…
Add table
Reference in a new issue