Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D877219ADE for ; Wed, 13 Apr 2016 17:10:00 +0000 (UTC) Received: (qmail 74947 invoked by uid 500); 13 Apr 2016 17:10:00 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 74911 invoked by uid 500); 13 Apr 2016 17:10:00 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 74902 invoked by uid 99); 13 Apr 2016 17:10:00 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Apr 2016 17:10:00 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 55B671801DA for ; Wed, 13 Apr 2016 17:10:00 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.221 X-Spam-Level: X-Spam-Status: No, score=-3.221 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id OpgvI38t9Rkc for ; Wed, 13 Apr 2016 17:09:59 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id A01FD5F1AE for ; Wed, 13 Apr 2016 17:09:58 +0000 (UTC) Received: (qmail 74859 invoked by uid 99); 13 Apr 2016 17:09:57 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Apr 2016 17:09:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BF2C7DFC13; Wed, 13 Apr 2016 17:09:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: upthewaterspout@apache.org To: commits@geode.incubator.apache.org Date: Wed, 13 Apr 2016 17:09:57 -0000 Message-Id: <01d165903f734b8c97b7303894679cd8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [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 Authored: Tue Apr 12 13:43:14 2016 -0700 Committer: Dan Smith 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 }