From commits-return-27561-archive-asf-public=cust-asf.ponee.io@geode.apache.org Thu Jul 19 03:29:49 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 3C13A180636 for ; Thu, 19 Jul 2018 03:29:49 +0200 (CEST) Received: (qmail 5879 invoked by uid 500); 19 Jul 2018 01:29:48 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 5870 invoked by uid 99); 19 Jul 2018 01:29:48 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jul 2018 01:29:48 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id AD84181ED7; Thu, 19 Jul 2018 01:29:47 +0000 (UTC) Date: Thu, 19 Jul 2018 01:29:47 +0000 To: "commits@geode.apache.org" Subject: [geode] branch develop updated: GEODE-5363: Tell intellij to consider all source code as production code (#2161) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153196378680.21283.17741382364488182996@gitbox.apache.org> From: jbarrett@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: d7be181bab5f4857c844456352938f5c357b46ba X-Git-Newrev: 2586d4b19b821f5ada013ccdc595a1ddcefd7fea X-Git-Rev: 2586d4b19b821f5ada013ccdc595a1ddcefd7fea X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. jbarrett pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/develop by this push: new 2586d4b GEODE-5363: Tell intellij to consider all source code as production code (#2161) 2586d4b is described below commit 2586d4b19b821f5ada013ccdc595a1ddcefd7fea Author: Dan Smith AuthorDate: Wed Jul 18 18:29:42 2018 -0700 GEODE-5363: Tell intellij to consider all source code as production code (#2161) Intellij currently can't compile test files because it doesn't recognize the dependency from one test source set to another test source set. To work around this we can make intellij consider everything production source code until we can fix the actual source layout. --- gradle/ide.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/ide.gradle b/gradle/ide.gradle index a8ea46d..09541a0 100644 --- a/gradle/ide.gradle +++ b/gradle/ide.gradle @@ -76,6 +76,7 @@ subprojects { idea { module { downloadSources = true + testSourceDirs = Collections.emptySet() } } }