Skip to content

Commit

Permalink
prevent uploadArchives from including distZip and distTar (#4569)
Browse files Browse the repository at this point in the history
fixes #4567
  • Loading branch information
lbergelson authored and droazen committed Mar 26, 2018
1 parent 61a3889 commit 1e4a397
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,11 @@ artifacts {
archives jar
archives javadocJar
archives sourcesJar

}
//remove zip and tar added by the application plugin
configurations.archives.artifacts.removeAll {it.file =~ '.zip$'}
configurations.archives.artifacts.removeAll {it.file =~ '.tar$'}

/**
* Sign non-snapshot releases with our secret key. This should never need to be invoked directly.
Expand Down

0 comments on commit 1e4a397

Please sign in to comment.