Explorar o código

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

Rob Winch %!s(int64=14) %!d(string=hai) anos
pai
achega
6c01590bbf
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  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 {