From 1e2c4635a3bee59029ecc8378ff76b8b1b4fca02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Fri, 7 Jun 2024 11:49:43 +0200 Subject: [PATCH] Exclude node_modules from NoHttp checks Closes gh-32981 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a9ce6eceb7af..0e5defc1ee75 100644 --- a/build.gradle +++ b/build.gradle @@ -151,7 +151,7 @@ configure(rootProject) { def rootPath = file(rootDir).toPath() def projectDirs = allprojects.collect { it.projectDir } + "${rootDir}/buildSrc" projectDirs.forEach { dir -> - [ 'bin', 'build', 'out', '.settings' ] + [ 'bin', 'build', 'out', '.settings', 'node_modules' ] .collect { rootPath.relativize(new File(dir, it).toPath()) } .forEach { source.exclude "$it/**" } [ '.classpath', '.project' ]