Skip to content

Commit

Permalink
Fix payara-hibernate test config -- Hibernate 6.2.0 and newer somehow
Browse files Browse the repository at this point in the history
threw java.lang.ClassCircularityError:
org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl$Entry
  • Loading branch information
BalusC committed Sep 5, 2024
1 parent eecc8a4 commit 9cf5eeb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,16 @@
<maven.source.excludeResources>true</maven.source.excludeResources>

<!-- Test versions. -->
<test.wildfly.version>33.0.1.Final</test.wildfly.version> <!-- https://search.maven.org/artifact/org.wildfly.bom/wildfly -->
<test.payara.version>6.2024.8</test.payara.version> <!-- https://search.maven.org/artifact/fish.payara.distributions/payara-web -->
<test.tomee.version>9.1.3</test.tomee.version> <!-- https://search.maven.org/artifact/org.apache.tomee/apache-tomee TODO: JEE9 compatible version which supports jakarta.ee XML namespace (M7 unfortunately doesn't support it yet, it still throws jakarta.xml.bind.UnmarshalException: unexpected element (uri:"https://jakarta.ee/xml/ns/jakartaee", local:"web-fragment")) https://issues.apache.org/jira/browse/TOMEE-3824 -->
<test.wildfly-eclipselink.version>5.0.0-B02</test.wildfly-eclipselink.version> <!-- https://search.maven.org/artifact/org.eclipse.persistence/eclipselink -->
<test.payara-hibernate.version>7.0.0.Beta1</test.payara-hibernate.version> <!-- https://search.maven.org/artifact/org.hibernate.orm/hibernate-core -->
<test.h2.version>2.3.232</test.h2.version> <!-- https://search.maven.org/artifact/com.h2database/h2 -->
<test.mysql-driver.version>8.0.33</test.mysql-driver.version> <!-- https://search.maven.org/artifact/mysql/mysql-connector-java -->
<test.postgresql-driver.version>42.7.4</test.postgresql-driver.version> <!-- https://search.maven.org/artifact/org.postgresql/postgresql -->
<test.omnifaces.version>4.5.1</test.omnifaces.version> <!-- https://search.maven.org/artifact/org.omnifaces/omnifaces -->
<test.primefaces.version>14.0.4</test.primefaces.version> <!-- https://search.maven.org/artifact/org.primefaces/primefaces -->
<test.wildfly.version>33.0.1.Final</test.wildfly.version> <!-- https://mvnrepository.com/artifact/org.wildfly.bom/wildfly -->
<test.payara.version>6.2024.8</test.payara.version> <!-- https://mvnrepository.com/artifact/fish.payara.distributions/payara-web -->
<test.tomee.version>9.1.3</test.tomee.version> <!-- https://mvnrepository.com/artifact/org.apache.tomee/apache-tomee TODO: JEE9 compatible version which supports jakarta.ee XML namespace (M7 unfortunately doesn't support it yet, it still throws jakarta.xml.bind.UnmarshalException: unexpected element (uri:"https://jakarta.ee/xml/ns/jakartaee", local:"web-fragment")) https://issues.apache.org/jira/browse/TOMEE-3824 -->
<test.wildfly-eclipselink.version>5.0.0-B02</test.wildfly-eclipselink.version> <!-- https://mvnrepository.com/artifact/org.eclipse.persistence/eclipselink -->
<test.payara-hibernate.version>6.1.7.Final</test.payara-hibernate.version> <!-- https://mvnrepository.com/artifact/org.hibernate.orm/hibernate-core -->
<test.h2.version>2.3.232</test.h2.version> <!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
<test.mysql-driver.version>8.0.33</test.mysql-driver.version> <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<test.postgresql-driver.version>42.7.4</test.postgresql-driver.version> <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<test.omnifaces.version>4.5.1</test.omnifaces.version> <!-- https://mvnrepository.com/artifact/org.omnifaces/omnifaces -->
<test.primefaces.version>14.0.4</test.primefaces.version> <!-- https://mvnrepository.com/artifact/org.primefaces/primefaces -->
</properties>

<dependencies>
Expand Down

0 comments on commit 9cf5eeb

Please sign in to comment.