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-exec.git
The following commit(s) were added to refs/heads/master by this push:
new 753dcf87 Fix Apache RAT plugin console warnings
753dcf87 is described below
commit 753dcf87158348830033165ab1c833a7fadd5e91
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 09:06:15 2025 -0500
Fix Apache RAT plugin console warnings
---
pom.xml | 6 +++---
src/changes/changes.xml | 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 52816982..06618d64 100644
--- a/pom.xml
+++ b/pom.xml
@@ -203,9 +203,9 @@ limitations under the License.
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
- <excludes>
- <exclude>src/test/resources/eml/*.eml</exclude>
- </excludes>
+ <inputExcludes>
+ <inputExclude>src/test/resources/eml/*.eml</inputExclude>
+ </inputExcludes>
</configuration>
</plugin>
</plugins>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 2a21157e..cd79ca94 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -33,6 +33,7 @@
<action type="fix" dev="ggregory" due-to="Gary Gregory">Calling
org.apache.commons.exec.ExecuteWatchdog.Builder.setThreadFactory(ThreadFactory)
with null now resets to the default
java.util.concurrent.Executors.defaultThreadFactory().</action>
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Checkstyle
issues.</action>
<action type="fix" dev="ggregory" due-to="Xin Wang, Sebb, Gary
Gregory">Fix StringUtils.quoteArgument(String) when input contains single and
double quotes #309.</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">TimeoutObserver
now extends Consumer<Watchdog>.</action>
<action type="add" dev="ggregory" due-to="Gary Gregory">Add
org.apache.commons.exec.Watchdog.getTimeout().</action>