From 0c9def89deed17c9961403913f980b55a5c81f3a Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 27 Jun 2022 15:05:05 +0200 Subject: [PATCH] Ignore build artifacts from the main branch for nohttp --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index bfb3a34cf40..7460727631d 100644 --- a/build.gradle +++ b/build.gradle @@ -413,6 +413,8 @@ configure(rootProject) { nohttp { source.exclude "**/test-output/**" + source.exclude "spring-core/graalvm/build/**" // only available on `main` + source.exclude "spring-core-test/build/**" // only available on `main` allowlistFile = project.file("src/nohttp/allowlist.lines") def rootPath = file(rootDir).toPath() def projectDirs = allprojects.collect { it.projectDir } + "${rootDir}/buildSrc"