From f1d77531e2f2cf263161ad14aa2592c1dc054b59 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 24 Feb 2022 19:27:28 -0800 Subject: [PATCH] Exclude build/ and target/ (output) directories from NoHTTP check. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 43ef90b9..fecd12d3 100644 --- a/build.gradle +++ b/build.gradle @@ -45,7 +45,7 @@ allprojects { } nohttp { - source.excludes = [ "**/.gradle/**", "**/.m2/**" ] + source.excludes = [ "**/.gradle/**", "**/.m2/**", "**/build/**", "**/target/**" ] } description = 'Spring Boot for Apache Geode'