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


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

commit a33f2aa873672fe511fb3e76d507e2e197029bc9
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 08:48:14 2025 -0500

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

diff --git a/pom.xml b/pom.xml
index 1a03774a5..45a8077d3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -278,14 +278,14 @@ Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, 
arj.
           <artifactId>apache-rat-plugin</artifactId>
           <version>${commons.rat.version}</version>
           <configuration>
-            <excludes>
+            <inputExcludes>
               <!-- files used during tests -->
-              <exclude>src/test/resources/**</exclude>
-              <exclude>.pmd</exclude>
-              <exclude>.projectile</exclude>
-              <exclude>.mvn/**</exclude>
-              <exclude>.gitattributes</exclude>
-            </excludes>
+              <inputExclude>src/test/resources/**</inputExclude>
+              <inputExclude>.pmd</inputExclude>
+              <inputExclude>.projectile</inputExclude>
+              <inputExclude>.mvn/**</inputExclude>
+              <inputExclude>.gitattributes</inputExclude>
+            </inputExcludes>
           </configuration>
         </plugin>
         <plugin>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ea24b9747..d89656547 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -58,6 +58,7 @@ The <action> type attribute can be add,update,fix,remove.
       <action type="fix" dev="ggregory" due-to="Roel van Dijk, Gary 
Gregory">Improve some exception messages in TarUtils and 
TarArchiveEntry.</action>
       <action type="fix" dev="pkarwasz" due-to="Piotr P. Karwasz">SevenZFile 
now enforces the same folder and coder limits as the CPP 
implementation.</action>
       <action type="fix" dev="pkarwasz" due-to="Piotr P. Karwasz">Refactor 
unsigned number parsing and header validation in SevenZFile.</action>
+      <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT 
plugin console warnings.</action>
       <!-- FIX bzip2 -->
       <action type="fix" dev="ggregory" due-to="Tyler Nighswander, Gary 
Gregory">BZip2CompressorInputStream now throw CompressorException (a subclass 
of IOException) for invalid or corrupted data, providing more specific error 
reporting.</action>
       <action type="fix" dev="pkarwasz" due-to="Tyler Nighswander, Piotr P. 
Karwasz">BZip2 input streams treat Huffman codes longer than 20 bits as 
corrupted data, matching the behavior of the reference implementation.</action>

Reply via email to