Skip to content

Commit f846f12

Browse files
committed
Fix Apache RAT plugin console warnings
1 parent 31c14ce commit f846f12

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -130,17 +130,17 @@
130130
<artifactId>apache-rat-plugin</artifactId>
131131
<!-- Should agree with config in reporting section -->
132132
<configuration>
133-
<excludes combine.children="append">
133+
<inputExcludes combine.children="append">
134134
<!-- trivial test data text files -->
135-
<exclude>**/src/test/resources/test-data/**/*.bin</exclude>
136-
<exclude>**/src/test/resources/test-data/**/*.txt</exclude>
137-
<exclude>**/src/test/resources/test-data/**/*.tgz</exclude>
138-
<exclude>**/src/test/resources/test-data/**/*.tbz2</exclude>
139-
<exclude>**/src/test/resources/test-data/test.mf</exclude>
135+
<inputExclude>**/src/test/resources/test-data/**/*.bin</inputExclude>
136+
<inputExclude>**/src/test/resources/test-data/**/*.txt</inputExclude>
137+
<inputExclude>**/src/test/resources/test-data/**/*.tgz</inputExclude>
138+
<inputExclude>**/src/test/resources/test-data/**/*.tbz2</inputExclude>
139+
<inputExclude>**/src/test/resources/test-data/test.mf</inputExclude>
140140
<!-- implicite exclude does not work if sandbox profile is not activated -->
141-
<exclude>commons-vfs2-sandbox/**</exclude>
142-
<exclude>**/dist/target/**</exclude>
143-
</excludes>
141+
<inputExclude>commons-vfs2-sandbox/**</inputExclude>
142+
<inputExclude>**/dist/target/**</inputExclude>
143+
</inputExcludes>
144144
</configuration>
145145
</plugin>
146146
<plugin>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ The <action> type attribute can be add,update,fix,remove.
5656
<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>
5757
<action dev="ggregory" type="fix" due-to="Guillaume Nodet, Gary Gregory">Complete JUnit 5 Migration #730.</action>
5858
<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>
59+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT plugin console warnings.</action>
5960
<!-- ADD -->
6061
<action dev="ggregory" type="add" due-to="Gary Gregory">Add org.apache.commons.vfs2.provider.ftp.FTPClientWrapper.sendOptions(String, String).</action>
6162
<action dev="ggregory" type="add" due-to="Gary Gregory">Add FtpFileSystemConfigBuilder.getControlEncodingCharset(FileSystemOptions) and deprecate getControlEncoding(FileSystemOptions).</action>

0 commit comments

Comments
 (0)