Eliminate "bad path element" warnings from build output (GRADLE-6)

This commit is contained in:
Chris Beams
2010-11-19 04:10:18 -07:00
parent 6c29574071
commit 1dc64b2914

View File

@@ -145,8 +145,8 @@ configure(javaprojects) {
testCompile "org.springframework:spring-test:$springVersion"
}
// enable all compiler warnings (GRADLE-1077)
[compileJava, compileTestJava]*.options*.compilerArgs = ['-Xlint:all']
// enable all compiler warnings (GRADLE-1077); eliminate path warnings
[compileJava, compileTestJava]*.options*.compilerArgs = ['-Xlint:all,-path']
// generate .classpath files without GRADLE_CACHE variable (GRADLE-1079)
eclipseClasspath.variables = [:]