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/22 02:45:20 UTC

[1/5] incubator-geode git commit: Removing snapshot from the version in preparation from the M2 release

Repository: incubator-geode
Updated Branches:
  refs/heads/develop a194b03fc -> 70c5467e2


Removing snapshot from the version in preparation from the M2 release


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

Branch: refs/heads/develop
Commit: fdfd98fbf074b65c24add59119152071d3297ed9
Parents: bf8c716
Author: Dan Smith <up...@apache.org>
Authored: Mon Apr 11 14:28:25 2016 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Mon Apr 11 14:28:25 2016 -0700

----------------------------------------------------------------------
 gradle.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/fdfd98fb/gradle.properties
----------------------------------------------------------------------
diff --git a/gradle.properties b/gradle.properties
index 6106175..dc3eebd 100755
--- a/gradle.properties
+++ b/gradle.properties
@@ -18,7 +18,7 @@
 # .M?       - milestone release
 # <blank>   - release
 versionNumber = 1.0.0-incubating
-releaseType = .M2-SNAPSHOT
+releaseType = .M2
 
 org.gradle.daemon = true
 org.gradle.jvmargs = -Xmx2048m


[2/5] incubator-geode git commit: GEODE-1213: Disables signing task on geode-modules-assembly

Posted by up...@apache.org.
GEODE-1213: Disables signing task on geode-modules-assembly

The signArchives task was not getting disabled on geode-modules-
assembly project.  This was causing a build error since the
project did not generate a jar artifact. This error was only
seen when enabling signing by setting properties in your
~/.gradle/gradle.properties file.


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

Branch: refs/heads/develop
Commit: d33fee0040603e650ce8842efd8f72bbd70871d3
Parents: fdfd98f
Author: Anthony Baker <ab...@apache.org>
Authored: Mon Apr 11 22:45:30 2016 -0700
Committer: Anthony Baker <ab...@apache.org>
Committed: Tue Apr 12 09:03:38 2016 -0700

----------------------------------------------------------------------
 gradle/utilities.gradle | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d33fee00/gradle/utilities.gradle
----------------------------------------------------------------------
diff --git a/gradle/utilities.gradle b/gradle/utilities.gradle
index 6a6df04..fa77839 100644
--- a/gradle/utilities.gradle
+++ b/gradle/utilities.gradle
@@ -29,12 +29,11 @@ allprojects {
     }
 
     disableMavenPublishing = {
-      // Use this closure when a project should not publish anything to maven. It appears that the nexus
-      // upload task still needs to exist, which is why an empty one is created.
+      // Use this closure when a project should not publish anything to maven.
       afterEvaluate {
-        tasks.remove(install)
-        tasks.remove(uploadArchives)
-        task uploadArchives << { }
+        install.enabled = false
+        uploadArchives.enabled = false
+        signArchives.enabled = false
       }
     }
   }


[4/5] incubator-geode git commit: GEODE-1213: Enable signing archives on geode-assembly

Posted by up...@apache.org.
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/develop
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
       }
     }


[5/5] incubator-geode git commit: Merge branch 'release/1.0.0-incubating.M2' into develop

Posted by up...@apache.org.
Merge branch 'release/1.0.0-incubating.M2' into develop


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

Branch: refs/heads/develop
Commit: 70c5467e2721cf693b9d546a611db43993103293
Parents: a194b03 3ac74a4
Author: Dan Smith <up...@apache.org>
Authored: Thu Apr 21 17:44:35 2016 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Thu Apr 21 17:44:35 2016 -0700

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



[3/5] incubator-geode git commit: GEODE-1218: Marking jna as not optional

Posted by up...@apache.org.
GEODE-1218: Marking jna as not optional

JNA is used for common features like offheap memory and disk stores, so
it should not be marked optional.

Cherry picked from develop to the release branch in order to avoid
possible issues with missing this jar.


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

Branch: refs/heads/develop
Commit: 124f978631db443c3ee29f290838b64be2c108d1
Parents: d33fee0
Author: Dan Smith <up...@apache.org>
Authored: Tue Apr 12 13:43:14 2016 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Wed Apr 13 10:58:21 2016 -0700

----------------------------------------------------------------------
 geode-core/build.gradle | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/124f9786/geode-core/build.gradle
----------------------------------------------------------------------
diff --git a/geode-core/build.gradle b/geode-core/build.gradle
index 526f22a..7d13114 100755
--- a/geode-core/build.gradle
+++ b/geode-core/build.gradle
@@ -61,9 +61,7 @@ dependencies {
   compile ('mx4j:mx4j-tools:' + project.'mx4j.version') { 
     ext.optional = true;
   }
-  compile ('net.java.dev.jna:jna:' + project.'jna.version') {
-    ext.optional = true
-  }
+  compile ('net.java.dev.jna:jna:' + project.'jna.version')
   provided ('org.apache.hadoop:hadoop-common:' + project.'hadoop.version') {
     transitive=false
   }