1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 06:12:05 +01:00

Create Jar artifact with test code

This commit is contained in:
Florian Schmaus 2014-08-12 21:58:04 +02:00
parent 47a59ad7b3
commit 7436a16d09

View file

@ -148,9 +148,14 @@ subprojects {
classifier = 'javadoc'
from javadoc.destinationDir
}
task testJar(type: Jar) {
classifier = 'tests'
from sourceSets.test.output
}
artifacts {
archives sourcesJar
archives javadocJar
archives testJar
}
uploadArchives {