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


The following commit(s) were added to refs/heads/master by this push:
     new 14e938a4d5 TOMEE-3953 - Fix TomEE :: Examples :: JPA with EclipseLink
14e938a4d5 is described below

commit 14e938a4d5b695bd90ad224c23a4f9776c841cf5
Author: Richard Zowalla <[email protected]>
AuthorDate: Wed May 11 13:08:33 2022 +0200

    TOMEE-3953 - Fix TomEE :: Examples :: JPA with EclipseLink
---
 examples/jpa-eclipselink/pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/examples/jpa-eclipselink/pom.xml b/examples/jpa-eclipselink/pom.xml
index 4dd8f80662..7d0a6c0d74 100644
--- a/examples/jpa-eclipselink/pom.xml
+++ b/examples/jpa-eclipselink/pom.xml
@@ -34,16 +34,16 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.5.1</version>
+        <version>3.10.1</version>
         <configuration>
-          <source>1.8</source>
-          <target>1.8</target>
+          <source>11</source>
+          <target>11</target>
         </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.22.1</version>
+        <version>3.0.0-M6</version>
         <configuration>
           <argLine>${surefire.argline}</argLine>
         </configuration>
@@ -88,7 +88,7 @@
     <dependency>
       <groupId>org.eclipse.persistence</groupId>
       <artifactId>eclipselink</artifactId>
-      <version>2.7.7</version>
+      <version>3.0.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

Reply via email to