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


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

commit ed1910f250dc305d784fad5a4d71ce9eabf71d3e
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 09:18:44 2025 -0500

    Fix Apache RAT plugin console warnings
---
 commons-jcs3-core/pom.xml |  6 +++---
 pom.xml                   | 44 ++++++++++++++++++++++----------------------
 src/changes/changes.xml   |  1 +
 3 files changed, 26 insertions(+), 25 deletions(-)

diff --git a/commons-jcs3-core/pom.xml b/commons-jcs3-core/pom.xml
index cee2b646..c0376525 100644
--- a/commons-jcs3-core/pom.xml
+++ b/commons-jcs3-core/pom.xml
@@ -132,9 +132,9 @@
           <artifactId>apache-rat-plugin</artifactId>
           <version>${commons.rat.version}</version>
           <configuration>
-            <excludes combine.children="append">
-              <exclude>**/zipcodes.txt</exclude>
-            </excludes>
+            <inputExcludes combine.children="append">
+              <inputExclude>**/zipcodes.txt</inputExclude>
+            </inputExcludes>
           </configuration>
         </plugin>
       </plugins>
diff --git a/pom.xml b/pom.xml
index 8d935428..4b1d7242 100644
--- a/pom.xml
+++ b/pom.xml
@@ -244,19 +244,19 @@
             <excludes combine.children="merge">
             so that the child pom entries replace the parent entries
           -->
-          <excludes combine.children="append">
-            <exclude>.java-version</exclude>
-            <exclude>**/zipcodes.txt</exclude>
-            <exclude>**/.gitignore</exclude>
-            <exclude>**/derby.log</exclude>
-            <exclude>**/META-INF/services/javax.*</exclude>
+          <inputExcludes combine.children="append">
+            <inputExclude>.java-version</inputExclude>
+            <inputExclude>**/zipcodes.txt</inputExclude>
+            <inputExclude>**/.gitignore</inputExclude>
+            <inputExclude>**/derby.log</inputExclude>
+            <inputExclude>**/META-INF/services/javax.*</inputExclude>
             <!-- Exclude Eclipse local files and folders -->
-            <exclude>**/.settings/**</exclude>
-            <exclude>**/.project</exclude>
-            <exclude>**/.classpath</exclude>
+            <inputExclude>**/.settings/**</inputExclude>
+            <inputExclude>**/.project</inputExclude>
+            <inputExclude>**/.classpath</inputExclude>
             <!-- Exclude build directory -->
-            <exclude>**/target/**</exclude>
-          </excludes>
+            <inputExclude>**/target/**</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
       <plugin>
@@ -445,19 +445,19 @@
             <excludes combine.children="merge">
             so that the child pom entries replace the parent entries
           -->
-          <excludes combine.children="append">
-            <exclude>.java-version</exclude>
-            <exclude>**/zipcodes.txt</exclude>
-            <exclude>**/.gitignore</exclude>
-            <exclude>**/derby.log</exclude>
-            <exclude>**/META-INF/services/javax.*</exclude>
+          <inputExcludes combine.children="append">
+            <inputExclude>.java-version</inputExclude>
+            <inputExclude>**/zipcodes.txt</inputExclude>
+            <inputExclude>**/.gitignore</inputExclude>
+            <inputExclude>**/derby.log</inputExclude>
+            <inputExclude>**/META-INF/services/javax.*</inputExclude>
             <!-- Exclude Eclipse local files and folders -->
-            <exclude>**/.settings/**</exclude>
-            <exclude>**/.project</exclude>
-            <exclude>**/.classpath</exclude>
+            <inputExclude>**/.settings/**</inputExclude>
+            <inputExclude>**/.project</inputExclude>
+            <inputExclude>**/.classpath</inputExclude>
             <!-- Exclude build directory -->
-            <exclude>**/target/**</exclude>
-          </excludes>
+            <inputExclude>**/target/**</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
     </plugins>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ead95570..f547a0c0 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -29,6 +29,7 @@
             <action type="fix" dev="ggregory" due-to="Gary Gregory">
                Remove -nouses directive from maven-bundle-plugin. OSGi package 
imports now state 'uses' definitions for package imports, this doesn't affect 
JPMS (from org.apache.commons:commons-parent:80).
             </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 Maven property project.build.outputTimestamp for build 
reproducibility.

Reply via email to