You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2021/06/02 15:17:24 UTC

[tomee-jakarta] branch master updated (43f8824 -> ead583a)

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

rzo1 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-jakarta.git.


    from 43f8824  [maven-release-plugin] prepare for next development iteration
     new a0d81ca  TOMEE-3754 - Upgrade to MyFaces 3.0.0
     new 6ee4876  TOMEE-3750: Upgrade BatchEE to 1.0.0
     new ead583a  TOMEE-3734: Update Johnzon to 1.2.11

The 3 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:
 pom.xml                                 | 6 +++---
 tomee/apache-tomee/pom.xml              | 2 ++
 tomee/tomee-microprofile-webapp/pom.xml | 6 ++++++
 tomee/tomee-plus-webapp/pom.xml         | 6 ++++++
 tomee/tomee-webprofile-webapp/pom.xml   | 6 ++++++
 5 files changed, 23 insertions(+), 3 deletions(-)

[tomee-jakarta] 01/03: TOMEE-3754 - Upgrade to MyFaces 3.0.0

Posted by rz...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-jakarta.git

commit a0d81ca4e12e7b72dc274ad63ed69f68bacfc52c
Author: Richard Zowalla <ri...@hs-heilbronn.de>
AuthorDate: Wed Jun 2 16:50:28 2021 +0200

    TOMEE-3754 - Upgrade to MyFaces 3.0.0
---
 pom.xml                                 | 2 +-
 tomee/apache-tomee/pom.xml              | 2 ++
 tomee/tomee-microprofile-webapp/pom.xml | 6 ++++++
 tomee/tomee-plus-webapp/pom.xml         | 6 ++++++
 tomee/tomee-webprofile-webapp/pom.xml   | 6 ++++++
 5 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 14e36f0..0bafc65 100644
--- a/pom.xml
+++ b/pom.xml
@@ -106,7 +106,7 @@
     <johnzon.version>1.2.10</johnzon.version>
     <junit.version>4.13.1</junit.version>
     <mojarra.version>3.0.0</mojarra.version>
-    <myfaces.version>2.3.8</myfaces.version>
+    <myfaces.version>3.0.0</myfaces.version>
     <openjpa.version>3.1.2</openjpa.version>
     <openwebbeans.version>2.0.22</openwebbeans.version>
     <org.apache.activemq.version>5.16.1</org.apache.activemq.version>
diff --git a/tomee/apache-tomee/pom.xml b/tomee/apache-tomee/pom.xml
index e0da11d..a53374d 100644
--- a/tomee/apache-tomee/pom.xml
+++ b/tomee/apache-tomee/pom.xml
@@ -591,6 +591,8 @@
                 <jars>
                   <jakarta.faces-3.0.0.jar>org.glassfish:jakarta.faces:jar:3.0.0</jakarta.faces-3.0.0.jar>
                   <eclipselink-3.0.0.jar>org.eclipse.persistence:eclipselink:jar:3.0.0</eclipselink-3.0.0.jar>
+                  <myfaces-api-3.0.0.jar>org.apache.myfaces.core:myfaces-api:jar:3.0.0</myfaces-api-3.0.0.jar>
+                  <myfaces-impl-3.0.0.jar>org.apache.myfaces.core:myfaces-impl:jar:3.0.0</myfaces-impl-3.0.0.jar>
                 </jars>
               </replace>
             </configuration>
diff --git a/tomee/tomee-microprofile-webapp/pom.xml b/tomee/tomee-microprofile-webapp/pom.xml
index bf3620d..650820b 100644
--- a/tomee/tomee-microprofile-webapp/pom.xml
+++ b/tomee/tomee-microprofile-webapp/pom.xml
@@ -556,6 +556,12 @@
           </patchSources>
           <transformSources>true</transformSources>
           <replace>
+            <!-- We don't want these bytecode modified at all, so we overwrite
+            any modifications made by the Eclipse Transformer with the originals -->
+            <jars>
+              <myfaces-api-3.0.0.jar>org.apache.myfaces.core:myfaces-api:jar:3.0.0</myfaces-api-3.0.0.jar>
+              <myfaces-impl-3.0.0.jar>org.apache.myfaces.core:myfaces-impl:jar:3.0.0</myfaces-impl-3.0.0.jar>
+            </jars>
             <resources>
               <openejb-version.properties>${project.build.outputDirectory}/openejb-version.properties</openejb-version.properties>
             </resources>
diff --git a/tomee/tomee-plus-webapp/pom.xml b/tomee/tomee-plus-webapp/pom.xml
index a2df28d..e46c532 100644
--- a/tomee/tomee-plus-webapp/pom.xml
+++ b/tomee/tomee-plus-webapp/pom.xml
@@ -578,6 +578,12 @@
           </patchSources>
           <transformSources>true</transformSources>
           <replace>
+            <!-- We don't want these bytecode modified at all, so we overwrite
+          any modifications made by the Eclipse Transformer with the originals -->
+            <jars>
+              <myfaces-api-3.0.0.jar>org.apache.myfaces.core:myfaces-api:jar:3.0.0</myfaces-api-3.0.0.jar>
+              <myfaces-impl-3.0.0.jar>org.apache.myfaces.core:myfaces-impl:jar:3.0.0</myfaces-impl-3.0.0.jar>
+            </jars>
             <resources>
               <openejb-version.properties>${project.build.outputDirectory}/openejb-version.properties</openejb-version.properties>
             </resources>
diff --git a/tomee/tomee-webprofile-webapp/pom.xml b/tomee/tomee-webprofile-webapp/pom.xml
index 6d17d5c..894688e 100644
--- a/tomee/tomee-webprofile-webapp/pom.xml
+++ b/tomee/tomee-webprofile-webapp/pom.xml
@@ -182,6 +182,12 @@
           </sourceExcludes>
           <transformSources>true</transformSources>
           <replace>
+            <!-- We don't want these bytecode modified at all, so we overwrite
+            any modifications made by the Eclipse Transformer with the originals -->
+            <jars>
+              <myfaces-api-3.0.0.jar>org.apache.myfaces.core:myfaces-api:jar:3.0.0</myfaces-api-3.0.0.jar>
+              <myfaces-impl-3.0.0.jar>org.apache.myfaces.core:myfaces-impl:jar:3.0.0</myfaces-impl-3.0.0.jar>
+            </jars>
             <resources>
               <openejb-version.properties>${project.build.outputDirectory}/openejb-version.properties</openejb-version.properties>
             </resources>

[tomee-jakarta] 03/03: TOMEE-3734: Update Johnzon to 1.2.11

Posted by rz...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-jakarta.git

commit ead583a94781ea14d7daa77ad7c4ffd1f48229be
Author: Richard Zowalla <ri...@hs-heilbronn.de>
AuthorDate: Wed Jun 2 16:50:54 2021 +0200

    TOMEE-3734: Update Johnzon to 1.2.11
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 3be5960..a64db31 100644
--- a/pom.xml
+++ b/pom.xml
@@ -103,7 +103,7 @@
     <jackson.dataformat.version>2.12.1</jackson.dataformat.version>
     <jackson.version>2.12.1</jackson.version>
     <jcs.version>2.1</jcs.version>
-    <johnzon.version>1.2.10</johnzon.version>
+    <johnzon.version>1.2.11</johnzon.version>
     <junit.version>4.13.1</junit.version>
     <mojarra.version>3.0.0</mojarra.version>
     <myfaces.version>3.0.0</myfaces.version>

[tomee-jakarta] 02/03: TOMEE-3750: Upgrade BatchEE to 1.0.0

Posted by rz...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-jakarta.git

commit 6ee48767334561e72a9cec9f8e624ddc6791f3c1
Author: Richard Zowalla <ri...@hs-heilbronn.de>
AuthorDate: Wed Jun 2 16:50:44 2021 +0200

    TOMEE-3750: Upgrade BatchEE to 1.0.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0bafc65..3be5960 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,7 +80,7 @@
   </mailingLists>
 
   <properties>
-    <batchee.version>0.6</batchee.version>
+    <batchee.version>1.0.0</batchee.version>
     <bval.version>2.0.5</bval.version>
     <commons-beanutils.version>1.9.4</commons-beanutils.version>
     <commons-cli.version>1.4</commons-cli.version>