Configure the NoHTTP Checkstyle Gradle Plugin to ignore the .gradle/ and .m2/ directories if under the project (build) working directory.

This commit is contained in:
John Blum
2021-04-04 16:48:42 -07:00
parent 1b327deba8
commit 694752f910

View File

@@ -32,6 +32,10 @@ allprojects {
}
}
nohttp {
source.excludes = [ "**/.gradle/**", "**/.m2/**" ]
}
description = 'Spring Boot for Apache Geode'
//ext['spring.version'] = "$springVersion"