nohttp exclude **/.gradle/**
This commit is contained in:
parent
91ea2d4c27
commit
601de66c03
|
|
@ -63,7 +63,7 @@ public class CheckstyleConventions {
|
||||||
NoHttpExtension noHttp = project.getExtensions().getByType(NoHttpExtension.class);
|
NoHttpExtension noHttp = project.getExtensions().getByType(NoHttpExtension.class);
|
||||||
noHttp.setAllowlistFile(project.file("src/nohttp/allowlist.lines"));
|
noHttp.setAllowlistFile(project.file("src/nohttp/allowlist.lines"));
|
||||||
noHttp.getSource().exclude("**/test-output/**", "**/.settings/**",
|
noHttp.getSource().exclude("**/test-output/**", "**/.settings/**",
|
||||||
"**/.classpath", "**/.project");
|
"**/.classpath", "**/.project", "**/.gradle/**");
|
||||||
List<String> buildFolders = List.of("bin", "build", "out");
|
List<String> buildFolders = List.of("bin", "build", "out");
|
||||||
project.allprojects(subproject -> {
|
project.allprojects(subproject -> {
|
||||||
Path rootPath = project.getRootDir().toPath();
|
Path rootPath = project.getRootDir().toPath();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue