You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by pp...@apache.org on 2023/01/17 14:57:37 UTC

[maven-mvnd] 01/02: Exclude test and cache filed from apache-rat-plugin checks

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git

commit 8d161dcf76cb18336b9010aebedeabdec4cec32a
Author: Peter Palaga <pp...@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 f24912b3..3551f5d2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -346,9 +346,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>