Skip to content

Commit 601de66

Browse files
rwinchrstoyanchev
authored andcommitted
nohttp exclude **/.gradle/**
1 parent 91ea2d4 commit 601de66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private static void configureNoHttpPlugin(Project project) {
6363
NoHttpExtension noHttp = project.getExtensions().getByType(NoHttpExtension.class);
6464
noHttp.setAllowlistFile(project.file("src/nohttp/allowlist.lines"));
6565
noHttp.getSource().exclude("**/test-output/**", "**/.settings/**",
66-
"**/.classpath", "**/.project");
66+
"**/.classpath", "**/.project", "**/.gradle/**");
6767
List<String> buildFolders = List.of("bin", "build", "out");
6868
project.allprojects(subproject -> {
6969
Path rootPath = project.getRootDir().toPath();

0 commit comments

Comments
 (0)