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-vfs.git
The following commit(s) were added to refs/heads/master by this push:
new f846f12cf Fix Apache RAT plugin console warnings
f846f12cf is described below
commit f846f12cf781f692b3d1bf48e9cb9bb6d0a9201f
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 10:07:49 2025 -0500
Fix Apache RAT plugin console warnings
---
pom.xml | 18 +++++++++---------
src/changes/changes.xml | 1 +
2 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/pom.xml b/pom.xml
index b2a8ba21f..4766e4334 100644
--- a/pom.xml
+++ b/pom.xml
@@ -130,17 +130,17 @@
<artifactId>apache-rat-plugin</artifactId>
<!-- Should agree with config in reporting section -->
<configuration>
- <excludes combine.children="append">
+ <inputExcludes combine.children="append">
<!-- trivial test data text files -->
- <exclude>**/src/test/resources/test-data/**/*.bin</exclude>
- <exclude>**/src/test/resources/test-data/**/*.txt</exclude>
- <exclude>**/src/test/resources/test-data/**/*.tgz</exclude>
- <exclude>**/src/test/resources/test-data/**/*.tbz2</exclude>
- <exclude>**/src/test/resources/test-data/test.mf</exclude>
+
<inputExclude>**/src/test/resources/test-data/**/*.bin</inputExclude>
+
<inputExclude>**/src/test/resources/test-data/**/*.txt</inputExclude>
+
<inputExclude>**/src/test/resources/test-data/**/*.tgz</inputExclude>
+
<inputExclude>**/src/test/resources/test-data/**/*.tbz2</inputExclude>
+
<inputExclude>**/src/test/resources/test-data/test.mf</inputExclude>
<!-- implicite exclude does not work if sandbox profile is not
activated -->
- <exclude>commons-vfs2-sandbox/**</exclude>
- <exclude>**/dist/target/**</exclude>
- </excludes>
+ <inputExclude>commons-vfs2-sandbox/**</inputExclude>
+ <inputExclude>**/dist/target/**</inputExclude>
+ </inputExcludes>
</configuration>
</plugin>
<plugin>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b651217b4..937a34d57 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -56,6 +56,7 @@ The <action> type attribute can be add,update,fix,remove.
<action dev="ggregory" type="fix" due-to="Gary Gregory,
WANGWEI">org.apache.commons.vfs2.provider.http5.Http5FileObject.doGetInputStream(int)
now closes its ClassicHttpResponse on a non-200 OK response.</action>
<action dev="ggregory" type="fix" due-to="Guillaume Nodet, Gary
Gregory">Complete JUnit 5 Migration #730.</action>
<action dev="ggregory" type="fix" due-to="Guillaume Nodet, Gary
Gregory">org.apache.commons.vfs2.provider.sftp.SftpClientFactory might now
always resolve the current directory properly on Java 25.</action>
+ <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT
plugin console warnings.</action>
<!-- ADD -->
<action dev="ggregory" type="add" due-to="Gary Gregory">Add
org.apache.commons.vfs2.provider.ftp.FTPClientWrapper.sendOptions(String,
String).</action>
<action dev="ggregory" type="add" due-to="Gary Gregory">Add
FtpFileSystemConfigBuilder.getControlEncodingCharset(FileSystemOptions) and
deprecate getControlEncoding(FileSystemOptions).</action>