This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch mvnd-0.9.x in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git
commit 21b0daa052eac0a6ff6e3791cad07968254d0866 Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Tue Jan 17 11:12:11 2023 +0100 Exclude test and cache filed from apache-rat-plugin checks --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index 4082c6c7..88b58620 100644 --- a/pom.xml +++ b/pom.xml @@ -345,9 +345,14 @@ <exclude>**/*.png</exclude> <exclude>**/*.json</exclude> <exclude>**/.mvn/*</exclude> + <exclude>.cache/**</exclude> <exclude>.mvn/**/*</exclude> <exclude>*.adoc</exclude> <exclude>*.md</exclude> + <exclude>src/test/projects/**/.classpath</exclude> + <exclude>src/test/projects/**/.project</exclude> + <exclude>src/test/projects/**/.settings/**</exclude> + <exclude>src/test/projects/**/target/**</exclude> </excludes> </configuration> </plugin>