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 2022/05/11 18:55:38 UTC

[tomee] 03/05: TOMEE-3958 - Modernizes TomEE :: Examples :: DeltaSpike Exception Handling- Requires DeltaSpike Update

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

commit 61c7290f9423687ef2f679a4e942916ab090cf9d
Author: Richard Zowalla <13...@users.noreply.github.com>
AuthorDate: Wed May 11 20:49:35 2022 +0200

    TOMEE-3958 - Modernizes TomEE :: Examples :: DeltaSpike Exception Handling- Requires DeltaSpike Update
---
 examples/deltaspike-exception-handling/pom.xml | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/examples/deltaspike-exception-handling/pom.xml b/examples/deltaspike-exception-handling/pom.xml
index 26b8651480..3f65ff9ef9 100644
--- a/examples/deltaspike-exception-handling/pom.xml
+++ b/examples/deltaspike-exception-handling/pom.xml
@@ -25,7 +25,7 @@
   <name>TomEE :: Examples :: DeltaSpike Exception Handling</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <version.deltaspike>1.9.3</version.deltaspike>
+    <version.deltaspike>1.9.6</version.deltaspike>
   </properties>
   <build>
     <defaultGoal>install</defaultGoal>
@@ -33,13 +33,12 @@
       <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>
-      
     </plugins>
   </build>
   <repositories>
@@ -60,11 +59,19 @@
       <groupId>org.apache.deltaspike.core</groupId>
       <artifactId>deltaspike-core-impl</artifactId>
       <version>${version.deltaspike}</version>
+      <classifier>jakarta</classifier>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.deltaspike.core</groupId>
+          <artifactId>deltaspike-core-api</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.deltaspike.core</groupId>
       <artifactId>deltaspike-core-api</artifactId>
       <version>${version.deltaspike}</version>
+      <classifier>jakarta</classifier>
     </dependency>
     <dependency>
       <groupId>junit</groupId>