소스 검색

Updated gradle build to workaround GRADLE-1116 - workaround /build/classes/test being added to the Eclipse classpath

Rob Winch 14 년 전
부모
커밋
6c01590bbf
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      build.gradle

+ 4 - 0
build.gradle

@@ -73,6 +73,10 @@ configure(javaProjects) {
             }
         }
     }
+    // GRADLE-1116
+    eclipseClasspath.whenConfigured { classpath ->
+        classpath.entries.removeAll { entry -> entry.path.endsWith('/build/classes/test') }
+    }
 }
 
 ideaModule {