You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by lg...@apache.org on 2016/07/28 18:15:44 UTC

incubator-geode git commit: Removing gradle output directories from the eclipse classpath

Repository: incubator-geode
Updated Branches:
  refs/heads/develop 70d630886 -> 70bc8d601


Removing gradle output directories from the eclipse classpath

The gradle eclipse target was generating a classpath that included
some artifacts generated by the command line build. The eclipse
classpath should not depend on the command line artifacts.

Reviewed by: Lynn G.


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

Branch: refs/heads/develop
Commit: 70bc8d6011c400b8c3765aae4cf67e51b989f29f
Parents: 70d6308
Author: Dan Smith <ds...@pivotal.io>
Authored: Thu Jul 28 11:10:48 2016 -0700
Committer: Lynn Gallinat <lg...@pivotal.io>
Committed: Thu Jul 28 11:15:28 2016 -0700

----------------------------------------------------------------------
 gradle/ide.gradle | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/70bc8d60/gradle/ide.gradle
----------------------------------------------------------------------
diff --git a/gradle/ide.gradle b/gradle/ide.gradle
index 03f6565..d07ad0b 100644
--- a/gradle/ide.gradle
+++ b/gradle/ide.gradle
@@ -32,6 +32,9 @@ subprojects {
             // Unfortunately, using minusConfigurations does not work here, because
             // it removes the entire geode-core project.
             classpath.entries.removeAll { entry -> entry.path.contains('geode-core/build')}
+            classpath.entries.removeAll { entry -> entry.path.contains('geode-web/build')}
+            classpath.entries.removeAll { entry -> entry.path.contains('geode-assembly/build')}
+            classpath.entries.removeAll { entry -> entry.path.contains('geode-dependencies.jar')}
 
             //By default, gradle adds the java 1.8 *execution environment*, which has access restrictions on
             //things like Unsafe. Change it to a direct dependency on the workspace JDK