You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/03/19 20:27:11 UTC

[commons-scxml] branch master updated (89cfea0 -> 97c0b32)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-scxml.git


    from 89cfea0  Bump groovy from 3.0.15 to 3.0.16 #116
     new 92d8365  Fix XML, add XSD
     new 275b450  Fix XML, add XSD
     new 39538a6  Javadoc: Convert package.html to package-info.java
     new 487e711  Javadoc: Convert package.html to package-info.java
     new 8951b33  Javadoc: Convert package.html to package-info.java
     new 343dbfe  Javadoc: Convert package.html to package-info.java
     new 445c915  Javadoc: Convert package.html to package-info.java
     new 4fd5064  Javadoc: Convert package.html to package-info.java
     new 075eb28  Javadoc: Convert package.html to package-info.java
     new 569cd0d  Javadoc: Convert package.html to package-info.java
     new fb8aff4  Javadoc: Convert package.html to package-info.java
     new 12080d2  Javadoc: Convert package.html to package-info.java
     new 97c0b32  Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-scxml.git

The 13 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/changes/changes.xml                            | 16 +++------
 .../commons/scxml2/env/groovy/package-info.java    |  7 +++-
 .../package.html => javascript/package-info.java}  | 17 ++++-----
 .../commons/scxml2/env/jexl/package-info.java      |  7 +++-
 .../env/{jexl/package.html => package-info.java}   | 21 ++++++------
 .../org/apache/commons/scxml2/env/package.html     | 29 ----------------
 .../package.html => invoke/package-info.java}      | 18 ++++------
 .../org/apache/commons/scxml2/invoke/package.html  | 27 ---------------
 .../org/apache/commons/scxml2/io/package-info.java | 11 +++++-
 .../java/org/apache/commons/scxml2/io/package.html | 31 -----------------
 .../{test/package.html => model/package-info.java} | 16 ++++-----
 .../scxml2/{package.html => package-info.java}     | 16 ++++-----
 .../package-info.java}                             | 24 +++++++------
 .../apache/commons/scxml2/semantics/package.html   | 40 ----------------------
 .../{model/package.html => test/package-info.java} | 16 ++++-----
 15 files changed, 82 insertions(+), 214 deletions(-)
 copy scxml-asl-header.txt => src/main/java/org/apache/commons/scxml2/env/groovy/package-info.java (83%)
 rename src/main/java/org/apache/commons/scxml2/env/{groovy/package.html => javascript/package-info.java} (79%)
 copy scxml-asl-header.txt => src/main/java/org/apache/commons/scxml2/env/jexl/package-info.java (84%)
 rename src/main/java/org/apache/commons/scxml2/env/{jexl/package.html => package-info.java} (75%)
 delete mode 100644 src/main/java/org/apache/commons/scxml2/env/package.html
 rename src/main/java/org/apache/commons/scxml2/{env/javascript/package.html => invoke/package-info.java} (76%)
 delete mode 100644 src/main/java/org/apache/commons/scxml2/invoke/package.html
 copy scxml-asl-header.txt => src/main/java/org/apache/commons/scxml2/io/package-info.java (68%)
 delete mode 100644 src/main/java/org/apache/commons/scxml2/io/package.html
 rename src/main/java/org/apache/commons/scxml2/{test/package.html => model/package-info.java} (86%)
 rename src/main/java/org/apache/commons/scxml2/{package.html => package-info.java} (87%)
 copy src/main/java/org/apache/commons/scxml2/{model/TransitionType.java => semantics/package-info.java} (61%)
 delete mode 100644 src/main/java/org/apache/commons/scxml2/semantics/package.html
 rename src/main/java/org/apache/commons/scxml2/{model/package.html => test/package-info.java} (86%)


[commons-scxml] 11/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit fb8aff42cd67fd7f281fc33008ab0619ff7506f9
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:34 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../scxml2/test/{package.html => package-info.java}      | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/test/package.html b/src/main/java/org/apache/commons/scxml2/test/package-info.java
similarity index 86%
rename from src/main/java/org/apache/commons/scxml2/test/package.html
rename to src/main/java/org/apache/commons/scxml2/test/package-info.java
index bf1795a..0d52e5c 100644
--- a/src/main/java/org/apache/commons/scxml2/test/package.html
+++ b/src/main/java/org/apache/commons/scxml2/test/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,12 +13,9 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-  <p>A collection of classes useful for command line testing.</p>
-
-</body>
-</html>
+/**
+ * A collection of classes useful for command line testing.
+ */
+package org.apache.commons.scxml2.test;


[commons-scxml] 10/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 569cd0d5c5086fa5b10d76b02afb4787da391c19
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:29 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../semantics/{package.html => package-info.java}  | 45 ++++++++++------------
 1 file changed, 20 insertions(+), 25 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/semantics/package.html b/src/main/java/org/apache/commons/scxml2/semantics/package-info.java
similarity index 59%
rename from src/main/java/org/apache/commons/scxml2/semantics/package.html
rename to src/main/java/org/apache/commons/scxml2/semantics/package-info.java
index 78e881c..83e3ec8 100644
--- a/src/main/java/org/apache/commons/scxml2/semantics/package.html
+++ b/src/main/java/org/apache/commons/scxml2/semantics/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,27 +13,23 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
- <p>A collection of classes responsible for implementations of the
- <code>org.apache.commons.scxml2.SCXMLSemantics</code> interface.</p>
-
- <p>Some possible semantic interpretations are, for example:</p>
-
- <ul>
-  <li>STATEMATE
-  <li>RHAPSODY
-  <li>ROOMCharts
-  <li>UML 1.5
-  <li>UML 2.0
- </ul>
-
- <p>Specific semantics can be created by subclassing
- <code>org.apache.commons.scxml2.semantics.SCXMLSemanticsImpl</code>,
- which is the default implementation used.</p>
-
-</body>
-</html>
+/**
+ * A collection of classes responsible for implementations of the <code>org.apache.commons.scxml2.SCXMLSemantics</code> interface.
+ * <p>
+ * Some possible semantic interpretations are, for example:
+ * </p>
+ * <ul>
+ * <li>STATEMATE
+ * <li>RHAPSODY
+ * <li>ROOMCharts
+ * <li>UML 1.5
+ * <li>UML 2.0
+ * </ul>
+ * <p>
+ * Specific semantics can be created by subclassing <code>org.apache.commons.scxml2.semantics.SCXMLSemanticsImpl</code>, which is the default implementation
+ * used.
+ * </p>
+ */
+package org.apache.commons.scxml2.semantics;


[commons-scxml] 03/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 39538a6c86535fad530530d433e6daa37260d78b
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:22:37 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../env/groovy/{package.html => package-info.java}      | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/env/groovy/package.html b/src/main/java/org/apache/commons/scxml2/env/groovy/package-info.java
similarity index 83%
rename from src/main/java/org/apache/commons/scxml2/env/groovy/package.html
rename to src/main/java/org/apache/commons/scxml2/env/groovy/package-info.java
index 10ba06c..9419814 100644
--- a/src/main/java/org/apache/commons/scxml2/env/groovy/package.html
+++ b/src/main/java/org/apache/commons/scxml2/env/groovy/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,13 +13,9 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-  <p>A collection of classes that allow Groovy to be used in expressions
-     within SCXML documents.</p>
-
-</body>
-</html>
+/**
+ * A collection of classes that allow Groovy to be used in expressions within SCXML documents.
+ */
+package org.apache.commons.scxml2.env.groovy;


[commons-scxml] 07/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 445c915fce426690aa3d045926979b69c4216a33
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:11 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../scxml2/invoke/{package.html => package-info.java} | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/invoke/package.html b/src/main/java/org/apache/commons/scxml2/invoke/package-info.java
similarity index 75%
rename from src/main/java/org/apache/commons/scxml2/invoke/package.html
rename to src/main/java/org/apache/commons/scxml2/invoke/package-info.java
index 03bc8ba..706c4e8 100644
--- a/src/main/java/org/apache/commons/scxml2/invoke/package.html
+++ b/src/main/java/org/apache/commons/scxml2/invoke/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,14 +13,10 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-  <p>A collection of classes related to the SCXML &lt;invoke&gt;
-     element and its children, dealing with the invocation of
-     activities associated with a particular state in the state machine.</p>
-
-</body>
-</html>
+/**
+ * A collection of classes related to the SCXML &lt;invoke&gt; element and its children, dealing with the invocation of activities associated with a particular
+ * state in the state machine.
+ */
+package org.apache.commons.scxml2.invoke;


[commons-scxml] 05/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 8951b3349109d3cd4e5849783e9bcf1321a65de7
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:00 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../scxml2/env/jexl/{package.html => package-info.java} | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/env/jexl/package.html b/src/main/java/org/apache/commons/scxml2/env/jexl/package-info.java
similarity index 83%
rename from src/main/java/org/apache/commons/scxml2/env/jexl/package.html
rename to src/main/java/org/apache/commons/scxml2/env/jexl/package-info.java
index c237aaf..343ddc6 100644
--- a/src/main/java/org/apache/commons/scxml2/env/jexl/package.html
+++ b/src/main/java/org/apache/commons/scxml2/env/jexl/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,13 +13,9 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-  <p>A collection of classes that allow JEXL to be used in expressions
-     within SCXML documents.</p>
-
-</body>
-</html>
+/**
+ * A collection of classes that allow JEXL to be used in expressions within SCXML documents.
+ */
+package org.apache.commons.scxml2.env.jexl;


[commons-scxml] 02/13: Fix XML, add XSD

Posted by gg...@apache.org.
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

commit 275b45061f6a1a17b7fe44318f0ee5fb1855298f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:21:59 2023 -0400

    Fix XML, add XSD
---
 src/changes/changes.xml | 16 +++++-----------
 1 file changed, 5 insertions(+), 11 deletions(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index cfcc2d3..1fb72a6 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -16,7 +16,9 @@
  * limitations under the License.
 -->
 
-<document>
+<document xmlns="http://maven.apache.org/changes/1.0.0"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
 
   <properties>
     <title>Apache Commons SCXML Changes</title>
@@ -24,14 +26,6 @@
 
   <body>
 
-    <section name="About this document">
-      <ul>
-        <li>The latest release of Commons SCXML is version 0.9.</li>
-        <li>If you are interested in helping the project, join us on the
-            <a href="mail-lists.html">commons-dev mailing list</a></li>
-      </ul>
-    </section>
-
     <release version="2.0" date="In Git master"
       description="Latest unreleased code">
 
@@ -658,7 +652,7 @@
       <action dev="rahul" type="fix" issue="SCXML-45">
        [05-29-2007] Payload of events sent to current scxml session using
        &lt;send&gt; tag are now injected into engine. Commons SCXML adds
-       the special <i>_eventdatamap</i> variable for storing payloads
+       the special _eventdatamap variable for storing payloads
        for derived events.
       </action>
 
@@ -811,7 +805,7 @@
        [10-11-2006] Update to new ASLv2 license headers for source files.
       </action>
 
-      <action dev="rahul" type="add" issues="SCXML-20">
+      <action dev="rahul" type="add" issue="SCXML-20">
        [10-05-2006] The Commons SCXML object model as well as the
        SCXMLExecutor instances are now serializable.
       </action>


[commons-scxml] 09/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 075eb2802e04cf979b3d8ff31ea1e2065eb6eb0b
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:23 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../scxml2/model/{package.html => package-info.java}     | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/model/package.html b/src/main/java/org/apache/commons/scxml2/model/package-info.java
similarity index 86%
rename from src/main/java/org/apache/commons/scxml2/model/package.html
rename to src/main/java/org/apache/commons/scxml2/model/package-info.java
index 313882e..3a4b1c3 100644
--- a/src/main/java/org/apache/commons/scxml2/model/package.html
+++ b/src/main/java/org/apache/commons/scxml2/model/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,12 +13,9 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-  <p>A collection of classes needed to model SCXML documents.</p>
-  
-</body>
-</html>
+/**
+ * A collection of classes needed to model SCXML documents.
+ */
+package org.apache.commons.scxml2.model;


[commons-scxml] 08/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 4fd5064cf3a1b8b26d959576f60da7d3cbd911c8
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:16 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../scxml2/io/{package.html => package-info.java}  | 26 +++++++++-------------
 1 file changed, 10 insertions(+), 16 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/io/package.html b/src/main/java/org/apache/commons/scxml2/io/package-info.java
similarity index 67%
rename from src/main/java/org/apache/commons/scxml2/io/package.html
rename to src/main/java/org/apache/commons/scxml2/io/package-info.java
index fa7e6a8..2cb197b 100644
--- a/src/main/java/org/apache/commons/scxml2/io/package.html
+++ b/src/main/java/org/apache/commons/scxml2/io/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,18 +13,13 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-	<p>A collection of classes for reading in and writing out SCXML
-		documents, to and from the Commons SCXML Java object model.</p>
-	<ul>
-		<li><code>SCXMLReader</code> is based on StAX based pull parsing
-			and has no external dependencies.</li>
-		<li><code>SCXMLWriter</code> is based on StAX XML stream writer.</li>
-	</ul>
-
-</body>
-</html>
+/**
+ * A collection of classes for reading in and writing out SCXML documents, to and from the Commons SCXML Java object model.
+ * <ul>
+ * <li><code>SCXMLReader</code> is based on StAX based pull parsing and has no external dependencies.</li>
+ * <li><code>SCXMLWriter</code> is based on StAX XML stream writer.</li>
+ * </ul>
+ */
+package org.apache.commons.scxml2.io;


[commons-scxml] 04/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 487e711ccd3c4483600579359b4e014baacd898c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:25:54 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../env/javascript/{package.html => package-info.java}  | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/env/javascript/package.html b/src/main/java/org/apache/commons/scxml2/env/javascript/package-info.java
similarity index 79%
rename from src/main/java/org/apache/commons/scxml2/env/javascript/package.html
rename to src/main/java/org/apache/commons/scxml2/env/javascript/package-info.java
index f7e29e5..7751b96 100644
--- a/src/main/java/org/apache/commons/scxml2/env/javascript/package.html
+++ b/src/main/java/org/apache/commons/scxml2/env/javascript/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,13 +13,9 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-  <p>A collection of classes that allow JavaScript to be used in expressions
-     within SCXML documents via the <code>javax.script</code> API.</p>
-
-</body>
-</html>
+/**
+ * A collection of classes that allow JavaScript to be used in expressions within SCXML documents via the <code>javax.script</code> API.
+ */
+package org.apache.commons.scxml2.env.javascript;


[commons-scxml] 01/13: Fix XML, add XSD

Posted by gg...@apache.org.
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

commit 92d8365bf957c1f27c7d0eb1f901656798bb9b4d
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:21:51 2023 -0400

    Fix XML, add XSD


[commons-scxml] 12/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 12080d25841434aaebb7ba1218dfc2a9ac0935d7
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:39 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../commons/scxml2/{package.html => package-info.java}   | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/package.html b/src/main/java/org/apache/commons/scxml2/package-info.java
similarity index 87%
rename from src/main/java/org/apache/commons/scxml2/package.html
rename to src/main/java/org/apache/commons/scxml2/package-info.java
index 676aee3..4d27a1b 100644
--- a/src/main/java/org/apache/commons/scxml2/package.html
+++ b/src/main/java/org/apache/commons/scxml2/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,12 +13,9 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-  <p>The Commons SCXML executor and core concepts.</p>
-
-</body>
-</html>
+/**
+ * The Commons SCXML executor and core concepts.
+ */
+package org.apache.commons.scxml2;


[commons-scxml] 13/13: Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-scxml.git

Posted by gg...@apache.org.
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

commit 97c0b326a93d495bd8820cf6774114410a005e9a
Merge: 12080d2 89cfea0
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:46 2023 -0400

    Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-scxml.git

 .github/workflows/codeql-analysis.yml     | 2 +-
 .github/workflows/coverage.yml            | 4 ++--
 .github/workflows/maven.yml               | 4 ++--
 .github/workflows/scorecards-analysis.yml | 2 +-
 pom.xml                                   | 2 +-
 src/changes/changes.xml                   | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)



[commons-scxml] 06/13: Javadoc: Convert package.html to package-info.java

Posted by gg...@apache.org.
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

commit 343dbfe671f8c486e3b292ee879a9dc89631f4c5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:06 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../scxml2/env/{package.html => package-info.java} | 24 +++++++++-------------
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/env/package.html b/src/main/java/org/apache/commons/scxml2/env/package-info.java
similarity index 74%
rename from src/main/java/org/apache/commons/scxml2/env/package.html
rename to src/main/java/org/apache/commons/scxml2/env/package-info.java
index 5b217c5..bb2785e 100644
--- a/src/main/java/org/apache/commons/scxml2/env/package.html
+++ b/src/main/java/org/apache/commons/scxml2/env/package-info.java
@@ -1,5 +1,4 @@
-<html>
-<!-- 
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -14,16 +13,13 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
--->
-<head>
-</head>
-<body>
+ */
 
-  <p>A collection of classes that may be commonly used to bridge the
-     SCXML executor to the runtime environment.</p>
-     
-  <p>Various sub-packages contain specifics related to a particular
-     environment.</p>
-
-</body>
-</html>
+/**
+ * A collection of classes that may be commonly used to bridge the SCXML executor to the runtime environment.
+ *
+ * <p>
+ * Various sub-packages contain specifics related to a particular environment.
+ * </p>
+ */
+package org.apache.commons.scxml2.env;