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-jxpath.git
The following commit(s) were added to refs/heads/master by this push:
new e932539d Fix Apache RAT plugin console warnings
e932539d is described below
commit e932539d88002e7f704bccc1745a5ca9aea9c3f2
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 09:20:28 2025 -0500
Fix Apache RAT plugin console warnings
---
pom.xml | 12 ++++++------
src/changes/changes.xml | 1 +
2 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/pom.xml b/pom.xml
index 138b23a3..7ecd36ce 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,9 +71,9 @@
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
- <excludes>
- <exclude>src/java/org/apache/commons/jxpath/ri/parser/*</exclude>
- </excludes>
+ <inputExcludes>
+
<inputExclude>src/java/org/apache/commons/jxpath/ri/parser/*</inputExclude>
+ </inputExcludes>
</configuration>
</plugin>
<plugin>
@@ -277,9 +277,9 @@
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
- <excludes>
- <exclude>src/java/org/apache/commons/jxpath/ri/parser/*</exclude>
- </excludes>
+ <inputExcludes>
+
<inputExclude>src/java/org/apache/commons/jxpath/ri/parser/*</inputExclude>
+ </inputExcludes>
</configuration>
</plugin>
</plugins>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 556739da..db8cda7a 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -53,6 +53,7 @@ The <action> type attribute can be add,update,fix,remove.
<action type="fix" dev="ggregory" due-to="Dima1224, Gary Gregory">Make
dynamicPropertyHandlerMap in ValueUtils thread-safe #251.</action>
<action type="fix" dev="ggregory" due-to="Gary Gregory">Refactor
JXPathIntrospector internal static maps to use concurrent classes instead of
synchronization.</action>
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix inconsistent
synchronization of NamespaceResolver.pointer; locked 50% of time (SpotBugs:
MT_CORRECTNESS IS2_INCONSISTENT_SYNC).</action>
+ <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT
plugin console warnings.</action>
<!-- ADD -->
<!-- UPDATE -->
<action type="update" dev="ggregory" due-to="Gary Gregory,
Dependabot">Bump org.apache.commons:commons-parent from 81 to 93 #239, #262,
#265, #282.</action>