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 77BFC18399 for ; Tue, 3 Nov 2015 19:07:30 +0000 (UTC) Received: (qmail 39963 invoked by uid 500); 3 Nov 2015 19:07:30 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 39936 invoked by uid 500); 3 Nov 2015 19:07:30 -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 39927 invoked by uid 99); 3 Nov 2015 19:07:30 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Nov 2015 19:07:30 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id F35B0C096F for ; Tue, 3 Nov 2015 19:07:29 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.771 X-Spam-Level: * X-Spam-Status: No, score=1.771 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id QFSe2LvGVNpy for ; Tue, 3 Nov 2015 19:07:22 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 455D542B7B for ; Tue, 3 Nov 2015 19:07:22 +0000 (UTC) Received: (qmail 37942 invoked by uid 99); 3 Nov 2015 19:07:21 -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; Tue, 03 Nov 2015 19:07:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 75E6ADFA96; Tue, 3 Nov 2015 19:07:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: klund@apache.org To: commits@geode.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-geode git commit: Make the gemfire-common and gemfire-core testRuntime dependencies. Date: Tue, 3 Nov 2015 19:07:21 +0000 (UTC) Repository: incubator-geode Updated Branches: refs/heads/feature/GEODE-328 a0271d203 -> 3763d6524 Make the gemfire-common and gemfire-core testRuntime dependencies. Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/3763d652 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/3763d652 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/3763d652 Branch: refs/heads/feature/GEODE-328 Commit: 3763d6524ea616455b68b992d0c33425ebecab01 Parents: a0271d2 Author: Kirk Lund Authored: Tue Nov 3 11:06:44 2015 -0800 Committer: Kirk Lund Committed: Tue Nov 3 11:06:44 2015 -0800 ---------------------------------------------------------------------- gemfire-web/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/3763d652/gemfire-web/build.gradle ---------------------------------------------------------------------- diff --git a/gemfire-web/build.gradle b/gemfire-web/build.gradle index 190c178..0c02b86 100755 --- a/gemfire-web/build.gradle +++ b/gemfire-web/build.gradle @@ -12,8 +12,8 @@ dependencies { // have to use output since we exclude the dependent classes from jar :( provided project(path: ':gemfire-core', configuration: 'classesOutput') - provided project(':gemfire-common') - provided project(':gemfire-core') + testRuntime project(':gemfire-common') + testRuntime project(':gemfire-core') provided project(path: ':gemfire-junit', configuration: 'testOutput') }