You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2016/04/13 21:35:16 UTC

incubator-geode git commit: GEODE-1213: Enable signing archives on geode-assembly

Repository: incubator-geode
Updated Branches:
  refs/heads/release/1.0.0-incubating.M2 124f97863 -> 3ac74a4e2


GEODE-1213: Enable signing archives on geode-assembly

The disableMavenPublishing task was used on both geode-modules-assembly
and geode-assembly. But geode-assembly does have archives that need to
be signed, so we should not disable signing for this module.

Adding a separate disableSigning method to disable signing, which is
used only in the geode-modules-assembly.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/3ac74a4e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/3ac74a4e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/3ac74a4e

Branch: refs/heads/release/1.0.0-incubating.M2
Commit: 3ac74a4e2c72677ef7c85df77922c645c7cce598
Parents: 124f978
Author: Dan Smith <up...@apache.org>
Authored: Wed Apr 13 11:37:56 2016 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Wed Apr 13 11:37:56 2016 -0700

----------------------------------------------------------------------
 extensions/geode-modules-assembly/build.gradle | 1 +
 gradle/utilities.gradle                        | 5 +++++
 2 files changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/3ac74a4e/extensions/geode-modules-assembly/build.gradle
----------------------------------------------------------------------
diff --git a/extensions/geode-modules-assembly/build.gradle b/extensions/geode-modules-assembly/build.gradle
index fe01717..960d924 100644
--- a/extensions/geode-modules-assembly/build.gradle
+++ b/extensions/geode-modules-assembly/build.gradle
@@ -38,6 +38,7 @@ extraArchive {
 }
 
 disableMavenPublishing()
+disableSigning()
 
 def getJarArtifact(module) {
   project(module).configurations.archives.artifacts.findAll {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/3ac74a4e/gradle/utilities.gradle
----------------------------------------------------------------------
diff --git a/gradle/utilities.gradle b/gradle/utilities.gradle
index fa77839..5f597f6 100644
--- a/gradle/utilities.gradle
+++ b/gradle/utilities.gradle
@@ -33,6 +33,11 @@ allprojects {
       afterEvaluate {
         install.enabled = false
         uploadArchives.enabled = false
+      }
+    }
+    disableSigning = {
+      // Use this closure when a project should not publish anything to maven.
+      afterEvaluate {
         signArchives.enabled = false
       }
     }