You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2017/01/07 03:59:29 UTC

groovy git commit: push signing of artifacts into the main build instead of the groovy-release repo (more tweaks - fix zip sigs)

Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X 9fa4b015e -> 51e4a5773


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 <pa...@asert.com.au>
Authored: Sat Jan 7 13:59:15 2017 +1000
Committer: paulk <pa...@asert.com.au>
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))
             }