Include LibAC in dev jar also
This commit is contained in:
parent
b6edb0b6d1
commit
c3590db1d8
2 changed files with 6 additions and 1 deletions
|
@ -181,9 +181,14 @@ jar.finalizedBy('reobfJar')
|
|||
// publish.dependsOn('reobfJar')
|
||||
|
||||
task devJar(type: Jar) {
|
||||
|
||||
from sourceSets.main.output
|
||||
from sourceSets.main.allJava
|
||||
classifier = 'dev'
|
||||
|
||||
from {
|
||||
configurations.provided.asFileTree.collect{zipTree(it)}
|
||||
}
|
||||
manifest {
|
||||
attributes([
|
||||
"Specification-Title": project.name,
|
||||
|
|
Reference in a new issue