Skip to content

Commit 54a4939

Browse files
committed
Fix Apache RAT plugin console warnings
1 parent 3d1ee7c commit 54a4939

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,11 @@
180180
<groupId>org.apache.rat</groupId>
181181
<artifactId>apache-rat-plugin</artifactId>
182182
<configuration>
183-
<excludes>
184-
<exclude>.asf.yaml</exclude>
185-
<exclude>site-content/**/*</exclude>
186-
<exclude>src/test/resources/org/apache/commons/collections4/data/test/*</exclude>
187-
</excludes>
183+
<inputExcludes>
184+
<inputExclude>.asf.yaml</inputExclude>
185+
<inputExclude>site-content/**/*</inputExclude>
186+
<inputExclude>src/test/resources/org/apache/commons/collections4/data/test/*</inputExclude>
187+
</inputExcludes>
188188
</configuration>
189189
</plugin>
190190
<plugin>
@@ -272,11 +272,11 @@
272272
<groupId>org.apache.rat</groupId>
273273
<artifactId>apache-rat-plugin</artifactId>
274274
<configuration>
275-
<excludes>
276-
<exclude>.asf.yaml</exclude>
277-
<exclude>site-content/**/*</exclude>
278-
<exclude>src/test/resources/org/apache/commons/collections4/data/test/*</exclude>
279-
</excludes>
275+
<inputExcludes>
276+
<inputExclude>.asf.yaml</inputExclude>
277+
<inputExclude>site-content/**/*</inputExclude>
278+
<inputExclude>src/test/resources/org/apache/commons/collections4/data/test/*</inputExclude>
279+
</inputExcludes>
280280
</configuration>
281281
</plugin>
282282
<plugin>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
<action type="fix" dev="ggregory" due-to="Gary Gregory" >Fix SortedProperties.propertyNames() returned an unsorted Enumeration.</action>
4141
<action type="fix" dev="ggregory" due-to="Gary Gregory" >Fix SortedProperties.stringPropertyNames() returned an unsorted Set.</action>
4242
<action type="fix" dev="ggregory" due-to="Gary Gregory" >Fix SortedProperties.forEach() called its consumer out of order.</action>
43+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT plugin console warnings.</action>
4344
<!-- ADD -->
4445
<action type="add" dev="ggregory" due-to="Gary Gregory">Add generics to UnmodifiableIterator for the wrapped type.</action>
4546
<!-- UPDATE -->

0 commit comments

Comments
 (0)