Skip to content

Commit

Permalink
Fixed jar signing
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Jul 31, 2019
1 parent 657c211 commit 80308db
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.gradle
Expand Up @@ -113,11 +113,6 @@ artifacts {
archives sourcesJar
}

signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}

scmVersion {
tag {
prefix = 'ical4j'
Expand Down Expand Up @@ -225,6 +220,12 @@ publishing {
}
}

signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
// sign configurations.archives
sign publishing.publications.mavenArtifacts
}

bintray {
user = bintray_user
key = bintray_key
Expand Down

0 comments on commit 80308db

Please sign in to comment.