Skip to content

Commit

Permalink
Disable signing of build artifacts (#1260)
Browse files Browse the repository at this point in the history
By default signing artifacts with the bintray public key is enabled.
However, this is not required and adds about 30 minutes to the :bintrayPublish task,
which is too long for travis-ci builds.
  • Loading branch information
cgtz authored and lightningrob committed Sep 10, 2019
1 parent dbecfae commit 3373f29
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gradle/shipkit.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ allprojects {
licenses = ['Apache-2.0']
labels = ['blob storage']
version {
// disable gpg signing to speed up publishing
gpg {
sign = false
}
// disable upload to maven central
mavenCentralSync {
sync = false
Expand Down

0 comments on commit 3373f29

Please sign in to comment.