This is an automated email from the ASF dual-hosted git repository. voonhous pushed a commit to branch release-1.2.1 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 609be82e4e5540032aa3f7a69145759db2eba62f Author: Vova Kolmakov <[email protected]> AuthorDate: Mon Aug 3 12:54:34 2026 +0700 fix(build): exclude nested .mvn directories from the RAT check (#19462) Co-authored-by: Vova Kolmakov <[email protected]> (cherry picked from commit 316067070e86aca0b5d2bf1a42e59921ecadf2a6) --- pom.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index daa80e1542bc..c4480f964cb7 100644 --- a/pom.xml +++ b/pom.xml @@ -703,7 +703,9 @@ <exclude>**/banner.txt</exclude> <!-- local files not in version control --> <exclude>**/*.iml</exclude> - <exclude>.mvn/**</exclude> + <!-- .mvn at any depth: nested ones are tracked without an ASF header + (hudi-trino/.mvn/modernizer/*.xml) and the source release strips .gitignore. --> + <exclude>**/.mvn/**</exclude> </excludes> </configuration> <executions>
