parent
2451bd62b0
commit
fe74fcfded
|
@ -64,7 +64,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", "**/.gradle/**");
|
"**/.classpath", "**/.project", "**/.gradle/**", "**/node_modules/**");
|
||||||
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