Exclude tmp/ directory in NOHTTP Gradle Plugin analysis.

This commit is contained in:
John Blum
2023-05-12 11:56:53 -07:00
parent 69c1d68689
commit 7ece1ce3e8

View File

@@ -49,7 +49,7 @@ subprojects {
}
nohttp {
source.excludes = [ "**/.gradle/**", "**/.m2/**", "**/build/**", "**/target/**" ]
source.excludes = [ "**/.gradle/**", "**/.m2/**", "**/build/**", "**/target/**", "**/tmp/**" ]
}
description = 'Spring Boot for Apache Geode'