We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ea2d4 commit 601de66Copy full SHA for 601de66
buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java
@@ -63,7 +63,7 @@ private static void configureNoHttpPlugin(Project project) {
63
NoHttpExtension noHttp = project.getExtensions().getByType(NoHttpExtension.class);
64
noHttp.setAllowlistFile(project.file("src/nohttp/allowlist.lines"));
65
noHttp.getSource().exclude("**/test-output/**", "**/.settings/**",
66
- "**/.classpath", "**/.project");
+ "**/.classpath", "**/.project", "**/.gradle/**");
67
List<String> buildFolders = List.of("bin", "build", "out");
68
project.allprojects(subproject -> {
69
Path rootPath = project.getRootDir().toPath();
0 commit comments