You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2022/04/25 08:43:12 UTC

[tomee] branch master updated (c23c36f65f -> 587459be07)

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

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


    from c23c36f65f Switch to hibernate-jcache due to 88f681aa70bd23546c8e91b347a684c1236abeea (ehcache 6.0.0 does not exist)
     new c789436635 Remove unsupported or old JVM args
     new 587459be07 Remove MyFaces API because it's already in Mojorra jar and they aren't compatible. The beauty of specifications when APIs and IMPLs are coupled together.

The 2 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:
 arquillian/arquillian-tomee-tests/pom.xml | 2 +-
 tomee/tomee-plume-webapp/pom.xml          | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)


[tomee] 02/02: Remove MyFaces API because it's already in Mojorra jar and they aren't compatible. The beauty of specifications when APIs and IMPLs are coupled together.

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

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

commit 587459be0739a287914ec94136a698be8903a4e7
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Mon Apr 25 10:42:50 2022 +0200

    Remove MyFaces API because it's already in Mojorra jar and they aren't compatible. The beauty of specifications when APIs and IMPLs are coupled together.
---
 tomee/tomee-plume-webapp/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tomee/tomee-plume-webapp/pom.xml b/tomee/tomee-plume-webapp/pom.xml
index 9e5f5e0623..9423945dc2 100644
--- a/tomee/tomee-plume-webapp/pom.xml
+++ b/tomee/tomee-plume-webapp/pom.xml
@@ -321,6 +321,10 @@
           <groupId>${project.groupId}</groupId>
           <artifactId>jakartaee-api</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.apache.myfaces.core</groupId>
+          <artifactId>myfaces-api</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
 


[tomee] 01/02: Remove unsupported or old JVM args

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

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

commit c789436635f5c321ef5129c4de75a47a93392153
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Mon Apr 25 10:41:47 2022 +0200

    Remove unsupported or old JVM args
---
 arquillian/arquillian-tomee-tests/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arquillian/arquillian-tomee-tests/pom.xml b/arquillian/arquillian-tomee-tests/pom.xml
index 0d8571c168..1f79ebd1d3 100644
--- a/arquillian/arquillian-tomee-tests/pom.xml
+++ b/arquillian/arquillian-tomee-tests/pom.xml
@@ -352,7 +352,7 @@
                 </goals>
                 <configuration>
                   <skip>${skip.embedded}</skip>
-                  <argLine>-javaagent:${settings.localRepository}/org/apache/tomee/openejb-javaagent/${project.version}/openejb-javaagent-${project.version}.jar -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=768M</argLine>
+                  <argLine>-javaagent:${settings.localRepository}/org/apache/tomee/openejb-javaagent/${project.version}/openejb-javaagent-${project.version}.jar</argLine>
                   <systemPropertyVariables>
                     <tomee.version>${project.version}</tomee.version>
                     <arquillian.launch>tomee-embedded</arquillian.launch>