mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-21 19:42:05 +01:00
Only include the jars of the actual version in distirbutionZip
in order to avoid that other artifactss from previous builds slip in the distribution zip.
This commit is contained in:
parent
1fb8a50b79
commit
08a232bff3
1 changed files with 3 additions and 1 deletions
|
@ -200,7 +200,9 @@ subprojects {
|
|||
rootProject.distributionZip {
|
||||
dependsOn build
|
||||
from(buildDir) {
|
||||
include "$libsDirName/**"
|
||||
include "$libsDirName/*${version}.jar"
|
||||
include "$libsDirName/*${version}-javadoc.jar"
|
||||
include "$libsDirName/*${version}-sources.jar"
|
||||
}
|
||||
}
|
||||
signing {
|
||||
|
|
Loading…
Reference in a new issue