This is an automated email from the ASF dual-hosted git repository.
dsmiley pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 12bf80a518d build/RAT: bring back exclusion of .gradle/**
12bf80a518d is described below
commit 12bf80a518ddd22870fe0d43ffc7bb1f9e81bcf5
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}