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

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


The following commit(s) were added to refs/heads/master by this push:
     new 54a49398d Fix Apache RAT plugin console warnings
54a49398d is described below

commit 54a49398d10c0f667c2f0e2a03a353ce327090ca
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 08:47:08 2025 -0500

    Fix Apache RAT plugin console warnings
---
 pom.xml                 | 20 ++++++++++----------
 src/changes/changes.xml |  1 +
 2 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0ef2627a1..e086a89f9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -180,11 +180,11 @@
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>
-          <excludes>
-            <exclude>.asf.yaml</exclude>
-            <exclude>site-content/**/*</exclude>
-            
<exclude>src/test/resources/org/apache/commons/collections4/data/test/*</exclude>
-          </excludes>
+          <inputExcludes>
+            <inputExclude>.asf.yaml</inputExclude>
+            <inputExclude>site-content/**/*</inputExclude>
+            
<inputExclude>src/test/resources/org/apache/commons/collections4/data/test/*</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
       <plugin>
@@ -272,11 +272,11 @@
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>
-          <excludes>
-            <exclude>.asf.yaml</exclude>
-            <exclude>site-content/**/*</exclude>
-            
<exclude>src/test/resources/org/apache/commons/collections4/data/test/*</exclude>
-          </excludes>
+          <inputExcludes>
+            <inputExclude>.asf.yaml</inputExclude>
+            <inputExclude>site-content/**/*</inputExclude>
+            
<inputExclude>src/test/resources/org/apache/commons/collections4/data/test/*</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
       <plugin>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index d991ede15..40fdb9c29 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -40,6 +40,7 @@
     <action type="fix" dev="ggregory" due-to="Gary Gregory" >Fix 
SortedProperties.propertyNames() returned an unsorted Enumeration.</action>
     <action type="fix" dev="ggregory" due-to="Gary Gregory" >Fix 
SortedProperties.stringPropertyNames() returned an unsorted Set.</action>
     <action type="fix" dev="ggregory" due-to="Gary Gregory" >Fix 
SortedProperties.forEach() called its consumer out of order.</action>
+    <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT 
plugin console warnings.</action>
     <!-- ADD -->
     <action type="add" dev="ggregory" due-to="Gary Gregory">Add generics to 
UnmodifiableIterator for the wrapped type.</action>
     <!-- UPDATE -->

Reply via email to