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-pool.git
The following commit(s) were added to refs/heads/master by this push:
new c4cf6d74 Fix Apache RAT plugin console warnings
c4cf6d74 is described below
commit c4cf6d74cf745878372356e5bb89b20458d2d304
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 09:24:57 2025 -0500
Fix Apache RAT plugin console warnings
---
pom.xml | 28 ++++++++++++++--------------
src/changes/changes.xml | 1 +
2 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/pom.xml b/pom.xml
index 054a3e81..cdf63099 100644
--- a/pom.xml
+++ b/pom.xml
@@ -166,13 +166,13 @@
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
- <excludes>
- <exclude>src/test/resources/test1</exclude>
- <exclude>src/test/resources/test2</exclude>
- <exclude>.checkstyle</exclude>
- <exclude>.fbprefs</exclude>
- <exclude>.pmd</exclude>
- </excludes>
+ <inputExcludes>
+ <inputExclude>src/test/resources/test1</inputExclude>
+ <inputExclude>src/test/resources/test2</inputExclude>
+ <inputExclude>.checkstyle</inputExclude>
+ <inputExclude>.fbprefs</inputExclude>
+ <inputExclude>.pmd</inputExclude>
+ </inputExcludes>
</configuration>
</plugin>
<plugin>
@@ -278,13 +278,13 @@
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
- <excludes>
- <exclude>src/test/resources/test1</exclude>
- <exclude>src/test/resources/test2</exclude>
- <exclude>.checkstyle</exclude>
- <exclude>.fbprefs</exclude>
- <exclude>.pmd</exclude>
- </excludes>
+ <inputExcludes>
+ <inputExclude>src/test/resources/test1</inputExclude>
+ <inputExclude>src/test/resources/test2</inputExclude>
+ <inputExclude>.checkstyle</inputExclude>
+ <inputExclude>.fbprefs</inputExclude>
+ <inputExclude>.pmd</inputExclude>
+ </inputExcludes>
</configuration>
</plugin>
<plugin>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 8ae016be..8d4c9c48 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -57,6 +57,7 @@ The <action> type attribute can be add,update,fix,remove.
<action type="fix" dev="ggregory" due-to="shengulong, Gary Gregory"
issue="POOL-422">org.apache.commons.pool3.impl.GenericObjectPool.create(Duration)
duration computation doesn't match 2.x. See also PR #409 from
shengulong.</action>
<action type="fix" dev="markt" due-to="Coverity Scan">Fix potential
ConcurrentModificationException in EvictionTimer thread clean-up.</action>
<action type="fix" dev="markt" due-to="Coverity Scan">Fix potential
ConcurrentModificationException in EvictionTimer tasks.</action>
+ <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT
plugin console warnings.</action>
<!-- REMOVE -->
<action dev="ggregory" type="remove">Deprecations from version 2.x have
been removed.</action>
<!-- UPDATE -->