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 19:09:57 UTC

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

Repository: incubator-geode
Updated Branches:
  refs/heads/develop 6c033cfe7 -> fbee35cc4


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.


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

Branch: refs/heads/develop
Commit: fbee35cc424f80d5f9ed316da99e0caeb5600ddc
Parents: 69cd4a7
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:08:42 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/fbee35cc/geode-core/build.gradle
----------------------------------------------------------------------
diff --git a/geode-core/build.gradle b/geode-core/build.gradle
index 8216d2a..2206018 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
   }


[2/2] incubator-geode git commit: GEODE-1217: Marking jansi as optional in the pom

Posted by up...@apache.org.
GEODE-1217: Marking jansi as optional in the pom


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

Branch: refs/heads/develop
Commit: 69cd4a7e3f2d77d6d0790bf47ed82278b4d09d42
Parents: 6c033cf
Author: Dan Smith <up...@apache.org>
Authored: Tue Apr 12 13:38:20 2016 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Wed Apr 13 10:08:42 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/69cd4a7e/geode-core/build.gradle
----------------------------------------------------------------------
diff --git a/geode-core/build.gradle b/geode-core/build.gradle
index 526f22a..8216d2a 100755
--- a/geode-core/build.gradle
+++ b/geode-core/build.gradle
@@ -88,7 +88,9 @@ dependencies {
 
   compile 'org.apache.logging.log4j:log4j-api:' + project.'log4j.version'
   compile 'org.apache.logging.log4j:log4j-core:' + project.'log4j.version'
-  runtime 'org.fusesource.jansi:jansi:' + project.'jansi.version'
+  runtime ('org.fusesource.jansi:jansi:' + project.'jansi.version') {
+    ext.optional = true
+  }
   runtime ('org.apache.logging.log4j:log4j-slf4j-impl:' + project.'log4j.version') {
     ext.optional = true
   }