This is an automated email from the ASF dual-hosted git repository. HoustonPutman pushed a commit to branch branch_10x in repository https://gitbox.apache.org/repos/asf/solr.git
commit 9ddddd0f09f74529513739c367bd32f88e1bc91a Author: David Smiley <[email protected]> AuthorDate: Wed Jun 10 18:36:01 2026 -0400 build/RAT: bring back exclusion of .gradle/** --- gradle/validation/rat-sources.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gradle/validation/rat-sources.gradle b/gradle/validation/rat-sources.gradle index 4e01a0e93ab..a971e91effe 100644 --- a/gradle/validation/rat-sources.gradle +++ b/gradle/validation/rat-sources.gradle @@ -123,6 +123,8 @@ allprojects { // validates input/output overlaps at configuration time before the git // filter closure runs, so this must be excluded explicitly. exclude project.layout.buildDirectory.get().asFile.name + // similarly, at least one subproject writes to .gradle/ for config/setup + exclude ".gradle/**" // Don't check any of the subprojects - they have their own rat tasks. exclude subprojects.collect {it.projectDir.name}
