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:22 UTC

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

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
   }