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

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-parent.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ca4859  Use inputExcludes for rat reporting configuration
8ca4859 is described below

commit 8ca4859d4613fdac04f89aa49b8dae63d085f60a
Author: Alex Herbert <[email protected]>
AuthorDate: Thu Apr 16 16:19:24 2026 +0100

    Use inputExcludes for rat reporting configuration
    
    Configuration matches that in the build section.
---
 pom.xml | 30 ++++++++++++++++++------------
 1 file changed, 18 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index c10321f..c589e42 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1198,20 +1198,26 @@
             <excludes combine.children="merge">
             so that the child pom entries replace the parent entries
           -->
-          <excludes combine.children="append">
-            <exclude>site-content/**</exclude>
-            <exclude>.checkstyle</exclude>
-            <exclude>.fbprefs</exclude>
-            <exclude>.pmd</exclude>
-            <exclude>.asf.yaml</exclude>
-            <exclude>.gitattributes</exclude>
-            <exclude>src/site/resources/download_*.cgi</exclude>
+          <inputExcludes combine.children="append">
+            <inputExclude>site-content/**</inputExclude>
+            <inputExclude>.checkstyle</inputExclude>
+            <inputExclude>.fbprefs</inputExclude>
+            <inputExclude>.pmd</inputExclude>
+            <inputExclude>.asf.yaml</inputExclude>
+            <inputExclude>.gitattributes</inputExclude>
+            <inputExclude>src/site/resources/download_*.cgi</inputExclude>
             <!-- Exclude Eclipse local files and folders -->
-            <exclude>maven-eclipse.xml</exclude>
-            <exclude>.externalToolBuilders/**</exclude>
+            <inputExclude>maven-eclipse.xml</inputExclude>
+            <inputExclude>.externalToolBuilders/**</inputExclude>
             <!-- Visual Studio code files -->
-            <exclude>.vscode/**</exclude>
-          </excludes>
+            <inputExclude>.vscode/**</inputExclude>
+            <!-- Exclude files, that are generated by Eclipse-->
+            <inputExclude>.project</inputExclude>
+            <inputExclude>.classpath</inputExclude>
+            <inputExclude>.settings/**</inputExclude>
+            <inputExclude>**/*.svg</inputExclude>
+            <inputExclude>**/*.xcf</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
     </plugins>

Reply via email to