Skip to content

Commit e932539

Browse files
committed
Fix Apache RAT plugin console warnings
1 parent 62b5791 commit e932539

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
<groupId>org.apache.rat</groupId>
7272
<artifactId>apache-rat-plugin</artifactId>
7373
<configuration>
74-
<excludes>
75-
<exclude>src/java/org/apache/commons/jxpath/ri/parser/*</exclude>
76-
</excludes>
74+
<inputExcludes>
75+
<inputExclude>src/java/org/apache/commons/jxpath/ri/parser/*</inputExclude>
76+
</inputExcludes>
7777
</configuration>
7878
</plugin>
7979
<plugin>
@@ -277,9 +277,9 @@
277277
<groupId>org.apache.rat</groupId>
278278
<artifactId>apache-rat-plugin</artifactId>
279279
<configuration>
280-
<excludes>
281-
<exclude>src/java/org/apache/commons/jxpath/ri/parser/*</exclude>
282-
</excludes>
280+
<inputExcludes>
281+
<inputExclude>src/java/org/apache/commons/jxpath/ri/parser/*</inputExclude>
282+
</inputExcludes>
283283
</configuration>
284284
</plugin>
285285
</plugins>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ The <action> type attribute can be add,update,fix,remove.
5353
<action type="fix" dev="ggregory" due-to="Dima1224, Gary Gregory">Make dynamicPropertyHandlerMap in ValueUtils thread-safe #251.</action>
5454
<action type="fix" dev="ggregory" due-to="Gary Gregory">Refactor JXPathIntrospector internal static maps to use concurrent classes instead of synchronization.</action>
5555
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix inconsistent synchronization of NamespaceResolver.pointer; locked 50% of time (SpotBugs: MT_CORRECTNESS IS2_INCONSISTENT_SYNC).</action>
56+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT plugin console warnings.</action>
5657
<!-- ADD -->
5758
<!-- UPDATE -->
5859
<action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump org.apache.commons:commons-parent from 81 to 93 #239, #262, #265, #282.</action>

0 commit comments

Comments
 (0)