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-text.git
The following commit(s) were added to refs/heads/master by this push:
new fa7a253a Fix Apache RAT plugin console warnings
fa7a253a is described below
commit fa7a253aaea60059e418563ee31a3807b8fe5bcd
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 10:01:41 2025 -0500
Fix Apache RAT plugin console warnings
---
pom.xml | 16 ++++++++--------
src/changes/changes.xml | 1 +
2 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/pom.xml b/pom.xml
index b173021f..5a00fd77 100644
--- a/pom.xml
+++ b/pom.xml
@@ -139,14 +139,14 @@
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
- <excludes>
- <exclude>site-content/**</exclude>
- <exclude>src/site/resources/download_text.cgi</exclude>
-
<exclude>src/site/resources/release-notes/RELEASE-NOTES-*.txt</exclude>
-
<exclude>src/test/resources/org/apache/commons/text/stringEscapeUtilsTestData.txt</exclude>
-
<exclude>src/test/resources/org/apache/commons/text/lcs-perf-analysis-inputs.csv</exclude>
-
<exclude>src/test/resources/org/apache/commons/text/oss-fuzz/**</exclude>
- </excludes>
+ <inputExcludes>
+ <inputExclude>site-content/**</inputExclude>
+ <inputExclude>src/site/resources/download_text.cgi</inputExclude>
+
<inputExclude>src/site/resources/release-notes/RELEASE-NOTES-*.txt</inputExclude>
+
<inputExclude>src/test/resources/org/apache/commons/text/stringEscapeUtilsTestData.txt</inputExclude>
+
<inputExclude>src/test/resources/org/apache/commons/text/lcs-perf-analysis-inputs.csv</inputExclude>
+
<inputExclude>src/test/resources/org/apache/commons/text/oss-fuzz/**</inputExclude>
+ </inputExcludes>
</configuration>
</plugin><!-- override skip property of parent pom -->
<plugin>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 4a2aaa1c..b901a067 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -50,6 +50,7 @@ The <action> type attribute can be add,update,fix,remove.
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix exception
message typo in XmlStringLookup.XmlStringLookup(Map, Path...).</action>
<action type="fix" dev="ggregory" due-to="Pierre Post, Sumit Bera, Alex
Herbert, Gary Gregory" issue="TEXT-236">Inserting at the end of a
TextStringBuilder throws a StringIndexOutOfBoundsException.</action>
<action type="fix" dev="ggregory" due-to="Michael Hausegger">Fix
TextStringBuilderTest.testAppendToCharBuffer() to use proper argument type
#724.</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="Piotr P. Karwasz, Gary
Gregory">Add experimental CycloneDX VEX file #683.</action>
<action type="add" dev="ggregory" due-to="LorgeN, Gary Gregory"
issue="TEXT-235">Add Damerau-Levenshtein distance #687.</action>