push signing of artifacts into the main build instead of the groovy-release repo (more tweaks - fix zip sigs)
Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/51e4a577 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/51e4a577 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/51e4a577 Branch: refs/heads/GROOVY_2_4_X Commit: 51e4a577349a7a5c2fe68fdc649ae2d57b16b6c5 Parents: 9fa4b01 Author: paulk <[email protected]> Authored: Sat Jan 7 13:59:15 2017 +1000 Committer: paulk <[email protected]> Committed: Sat Jan 7 13:59:15 2017 +1000 ---------------------------------------------------------------------- gradle/bintray.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/51e4a577/gradle/bintray.gradle ---------------------------------------------------------------------- diff --git a/gradle/bintray.gradle b/gradle/bintray.gradle index d820f94..4923c97 100644 --- a/gradle/bintray.gradle +++ b/gradle/bintray.gradle @@ -71,8 +71,8 @@ artifactoryPublish { // as the artifactId, so we add the transformed one ourselves // this also covers signatures which we already added during install deployDetails.add(makeTransformedDetails(it)) - if (it.type == 'jar' && it.extension == 'jar' && !it.classifier) { - // and the pom and its signature + if (!it.classifier && (it.type == 'jar' || it.type == 'zip')) { + // add the pom and its signature deployDetails.add(makeTransformedPomDetails(it)) deployDetails.add(makeTransformedPomSigDetails(it)) }
