Skip to content

Commit

Permalink
prevent uploadArchives from including distZip and distTar
Browse files Browse the repository at this point in the history
fixes #4567
  • Loading branch information
lbergelson committed Mar 23, 2018
1 parent 8463525 commit 7cd2fd9
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 @@ -610,7 +610,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 7cd2fd9

Please sign in to comment.