From 694752f910c9e5225f7969398ddc85731511e2bd Mon Sep 17 00:00:00 2001 From: John Blum Date: Sun, 4 Apr 2021 16:48:42 -0700 Subject: [PATCH] Configure the NoHTTP Checkstyle Gradle Plugin to ignore the .gradle/ and .m2/ directories if under the project (build) working directory. --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 0fff6e70..01293e46 100644 --- a/build.gradle +++ b/build.gradle @@ -32,6 +32,10 @@ allprojects { } } +nohttp { + source.excludes = [ "**/.gradle/**", "**/.m2/**" ] +} + description = 'Spring Boot for Apache Geode' //ext['spring.version'] = "$springVersion"