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-scxml.git


The following commit(s) were added to refs/heads/master by this push:
     new c5982944 Fix Apache RAT plugin console warnings
c5982944 is described below

commit c5982944d1d69edcff24eb3cd26d9dc349cdfdd6
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 09:59:15 2025 -0500

    Fix Apache RAT plugin console warnings
---
 pom.xml                 | 19 +++++++++++--------
 src/changes/changes.xml |  4 ++++
 2 files changed, 15 insertions(+), 8 deletions(-)

diff --git a/pom.xml b/pom.xml
index aa7b112e..6befb27f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -298,13 +298,13 @@
         <artifactId>apache-rat-plugin</artifactId>
         <!-- Should agree with config in reporting section -->
         <configuration>
-          <excludes combine.children="append">
+          <inputExcludes combine.children="append">
             <!--exclude stylesheet adapted from 
http://www.w3.org/Voice/2013/scxml-irp/confXPath.xsl -->
-            
<exclude>src/test/java/org/apache/commons/scxml2/w3c/confMinimal.xsl</exclude>
+            
<inputExclude>src/test/java/org/apache/commons/scxml2/w3c/confMinimal.xsl</inputExclude>
             <!--exclude stylesheets adapted from 
http://www.w3.org/Voice/2013/scxml-irp/confEcma.xsl -->
-            
<exclude>src/test/java/org/apache/commons/scxml2/w3c/confJexl.xsl</exclude>
-            
<exclude>src/test/java/org/apache/commons/scxml2/w3c/confGroovy.xsl</exclude>
-          </excludes>
+            
<inputExclude>src/test/java/org/apache/commons/scxml2/w3c/confJexl.xsl</inputExclude>
+            
<inputExclude>src/test/java/org/apache/commons/scxml2/w3c/confGroovy.xsl</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
       <plugin>
@@ -366,10 +366,13 @@
         <artifactId>apache-rat-plugin</artifactId>
         <!-- Should agree with config in build section -->
         <configuration>
-          <excludes combine.children="append">
+          <inputExcludes combine.children="append">
             <!--exclude stylesheet adapted from 
http://www.w3.org/Voice/2013/scxml-irp/confXPath.xsl -->
-            
<exclude>src/test/java/org/apache/commons/scxml2/w3c/confMinimal.xsl</exclude>
-          </excludes>
+            
<inputExclude>src/test/java/org/apache/commons/scxml2/w3c/confMinimal.xsl</inputExclude>
+            <!--exclude stylesheets adapted from 
http://www.w3.org/Voice/2013/scxml-irp/confEcma.xsl -->
+            
<inputExclude>src/test/java/org/apache/commons/scxml2/w3c/confJexl.xsl</inputExclude>
+            
<inputExclude>src/test/java/org/apache/commons/scxml2/w3c/confGroovy.xsl</inputExclude>
+          </inputExcludes>
         </configuration>
       </plugin>
     </plugins>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 08e022c0..ac844653 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -25,15 +25,19 @@
   <body>
     <release version="2.0" date="In Git master"
       description="Latest unreleased code">
+      <!-- FIX -->
       <action dev="ate" type="fix" issue="SCXML-285">
         [18-10-2018] Before executing invoke handlers after a macrostep all 
internal events must have been processed
       </action>
+      <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT 
plugin console warnings.</action>
+      <!-- UPDATE -->
       <action dev="woonsan" type="update" issue="SCXML-284" due-to="Allon 
Mureinik">
         [10-10-2018] Clear up exception handling in tests
       </action>
       <action dev="woonsan" type="update" issue="SCXML-283" due-to="Allon 
Mureinik">
         [08-10-2018] Upgrade testing framework to JUnit Jupiter
       </action>
+      <!-- ADD -->
       <action dev="ate" type="add" issue="SCXML-279">
         [21-01-2018] Only use default Jexl3 setting for silent and strict, 
cleanup APIs accordingly
       </action>

Reply via email to