|
@@ -10,7 +10,10 @@ configure(javaProjects) {
|
|
|
|
|
|
// GRADLE-1116
|
|
// GRADLE-1116
|
|
project.eclipse.classpath.file.whenMerged { classpath ->
|
|
project.eclipse.classpath.file.whenMerged { classpath ->
|
|
|
|
+ classpath.entries.removeAll { entry -> entry.path.endsWith('/build/resources/test') }
|
|
classpath.entries.removeAll { entry -> entry.path.endsWith('/build/classes/test') }
|
|
classpath.entries.removeAll { entry -> entry.path.endsWith('/build/classes/test') }
|
|
|
|
+ classpath.entries.removeAll { entry -> entry.path.endsWith('/build/resources/main') }
|
|
|
|
+ classpath.entries.removeAll { entry -> entry.path.endsWith('/build/classes/main') }
|
|
}
|
|
}
|
|
|
|
|
|
// GRADLE-1422
|
|
// GRADLE-1422
|