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-fileupload.git


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

commit 85738fe279028246d5c8d800c62231401f2a7823
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 09:11:39 2025 -0500

    Fix Apache RAT plugin console warnings
---
 commons-fileupload2-core/pom.xml             | 12 ++++++------
 commons-fileupload2-jakarta-servlet5/pom.xml | 12 ++++++------
 commons-fileupload2-jakarta-servlet6/pom.xml | 12 ++++++------
 commons-fileupload2-javax/pom.xml            | 12 ++++++------
 pom.xml                                      |  8 ++++----
 src/changes/changes.xml                      |  1 +
 6 files changed, 29 insertions(+), 28 deletions(-)

diff --git a/commons-fileupload2-core/pom.xml b/commons-fileupload2-core/pom.xml
index 7c96e51a..5c3df4d1 100644
--- a/commons-fileupload2-core/pom.xml
+++ b/commons-fileupload2-core/pom.xml
@@ -108,12 +108,12 @@
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>
-          <excludes combine.children="append">
-            <exclude>.project</exclude>
-            <exclude>.classpath</exclude>
-            <exclude>.settings/**/</exclude>
-            <exclude>bin/**</exclude>
-          </excludes>
+          <inputExcludes combine.children="append">
+            <inputExclude>.project</inputExclude>
+            <inputExclude>.classpath</inputExclude>
+            <inputExclude>.settings/**/</inputExclude>
+            <inputExclude>bin/**</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
     </plugins>
diff --git a/commons-fileupload2-jakarta-servlet5/pom.xml 
b/commons-fileupload2-jakarta-servlet5/pom.xml
index bbbdc026..b17f11b6 100644
--- a/commons-fileupload2-jakarta-servlet5/pom.xml
+++ b/commons-fileupload2-jakarta-servlet5/pom.xml
@@ -130,12 +130,12 @@
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>
-          <excludes combine.children="append">
-            <exclude>.project</exclude>
-            <exclude>.classpath</exclude>
-            <exclude>.settings/**/</exclude>
-            <exclude>bin/**</exclude>
-          </excludes>
+          <inputExcludes combine.children="append">
+            <inputExclude>.project</inputExclude>
+            <inputExclude>.classpath</inputExclude>
+            <inputExclude>.settings/**/</inputExclude>
+            <inputExclude>bin/**</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
     </plugins>
diff --git a/commons-fileupload2-jakarta-servlet6/pom.xml 
b/commons-fileupload2-jakarta-servlet6/pom.xml
index d0db4287..7b713c2d 100644
--- a/commons-fileupload2-jakarta-servlet6/pom.xml
+++ b/commons-fileupload2-jakarta-servlet6/pom.xml
@@ -130,12 +130,12 @@
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>
-          <excludes combine.children="append">
-            <exclude>.project</exclude>
-            <exclude>.classpath</exclude>
-            <exclude>.settings/**/</exclude>
-            <exclude>bin/**</exclude>
-          </excludes>
+          <inputExcludes combine.children="append">
+            <inputExclude>.project</inputExclude>
+            <inputExclude>.classpath</inputExclude>
+            <inputExclude>.settings/**/</inputExclude>
+            <inputExclude>bin/**</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
     </plugins>
diff --git a/commons-fileupload2-javax/pom.xml 
b/commons-fileupload2-javax/pom.xml
index 047bdfbf..f4e6bbe7 100644
--- a/commons-fileupload2-javax/pom.xml
+++ b/commons-fileupload2-javax/pom.xml
@@ -124,12 +124,12 @@
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>
-          <excludes combine.children="append">
-            <exclude>.project</exclude>
-            <exclude>.classpath</exclude>
-            <exclude>.settings/**/</exclude>
-            <exclude>bin/**</exclude>
-          </excludes>
+          <inputExcludes combine.children="append">
+            <inputExclude>.project</inputExclude>
+            <inputExclude>.classpath</inputExclude>
+            <inputExclude>.settings/**/</inputExclude>
+            <inputExclude>bin/**</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
     </plugins>
diff --git a/pom.xml b/pom.xml
index 23bbbea5..b4caee4e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,10 +123,10 @@
           <groupId>org.apache.rat</groupId>
           <artifactId>apache-rat-plugin</artifactId>
           <configuration>
-            <excludes>
-              <exclude>site-content/**</exclude>
-              <exclude>src/checkstyle/license-header.txt</exclude>
-            </excludes>
+            <inputExcludes>
+              <inputExclude>site-content/**</inputExclude>
+              <inputExclude>src/checkstyle/license-header.txt</inputExclude>
+            </inputExcludes>
           </configuration>
         </plugin>
         <!-- override skip property of parent pom for new major release -->
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a9b23ae6..c43518cc 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -52,6 +52,7 @@ The <action> type attribute can be add,update,fix,remove.
       <action                        type="fix" dev="ggregory" due-to="Gary 
Gregory">Rename AbstractFileUpload.[get|set]FileSizeMax() to 
AbstractFileUpload.[get|set]MaxFileSize().</action>
       <action                        type="fix" dev="ggregory" due-to="Gary 
Gregory">Rename AbstractFileUpload.[get|set]FileCountMax() to 
AbstractFileUpload.[get|set]MaxFileCount().</action>
       <action                        type="fix" dev="ggregory" 
due-to="tPionTech">Minor readability and cleanup improvements in DiskFileItem 
#458.</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="Ryan J 
Murphy">Add AbstractFileUpload support for a maximum part header size 
#429.</action>
       <!-- UPDATE -->

Reply via email to