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

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

commit 635956b674f9c01018ad55c9e86cc4bda6fdcf3d
Author: Richard Zowalla <[email protected]>
AuthorDate: Fri May 22 15:40:58 2026 +0200

    examples: align MicroProfile and WebSocket API versions for TomEE 11
    
    TomEE 11 ships MicroProfile 7.1. Update example spec versions that were
    still pinned to MicroProfile 6.x (or older) levels:
    
    - MicroProfile JWT 1.1 -> 2.1
    - MicroProfile Rest Client 3.0.1 -> 4.0
    - MicroProfile OpenAPI 3.1.1 -> 4.1 (SmallRye impl 3.13.0 -> 4.2.4)
    - MicroProfile Fault Tolerance 4.0.2 -> 4.1
    - MicroProfile Config 3.0.2 -> 3.1
    - Jakarta WebSocket API 2.0.0 -> 2.2.0
    
    Also bump jakartaee-api 10.0 -> 11.0.0-SNAPSHOT in mp-faulttolerance-retry
    and mp-rest-jwt-public-key.
---
 examples/mp-config-example/pom.xml                     | 2 +-
 examples/mp-faulttolerance-fallback/pom.xml            | 6 +++---
 examples/mp-faulttolerance-retry/pom.xml               | 8 ++++----
 examples/mp-faulttolerance-timeout/pom.xml             | 6 +++---
 examples/mp-jwt-bean-validation-strongly-typed/pom.xml | 2 +-
 examples/mp-jwt-bean-validation/pom.xml                | 2 +-
 examples/mp-openapi-reader/pom.xml                     | 4 ++--
 examples/mp-rest-client/pom.xml                        | 2 +-
 examples/mp-rest-jwt-public-key/pom.xml                | 4 ++--
 examples/security-openid/pom.xml                       | 2 +-
 examples/websocket-tls-basic-auth/pom.xml              | 2 +-
 11 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/examples/mp-config-example/pom.xml 
b/examples/mp-config-example/pom.xml
index e34daf2cac..eb27e5d5d2 100644
--- a/examples/mp-config-example/pom.xml
+++ b/examples/mp-config-example/pom.xml
@@ -24,7 +24,7 @@
   <name>TomEE :: Examples :: MicroProfile Config</name>
   <properties>
     <version.jakartaee-api>11.0.0-SNAPSHOT</version.jakartaee-api>
-    <version.microprofile.config>3.0.2</version.microprofile.config>
+    <version.microprofile.config>3.1</version.microprofile.config>
     <tomee.version>11.0.0-SNAPSHOT</tomee.version>
     <version.arquillian>1.10.0.Final</version.arquillian>
   </properties>
diff --git a/examples/mp-faulttolerance-fallback/pom.xml 
b/examples/mp-faulttolerance-fallback/pom.xml
index 8c75945b32..c4289690dd 100644
--- a/examples/mp-faulttolerance-fallback/pom.xml
+++ b/examples/mp-faulttolerance-fallback/pom.xml
@@ -21,14 +21,14 @@
   <packaging>war</packaging>
   <name>TomEE :: Examples :: Microprofile Fault Tolerance :: Fallback</name>
   <properties>
-    
<version.microprofile.fault-tolerance-api>4.0.2</version.microprofile.fault-tolerance-api>
+    
<version.microprofile.fault-tolerance-api>4.1</version.microprofile.fault-tolerance-api>
     
<arquillian-junit-container.version>1.7.1.Final</arquillian-junit-container.version>
     <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
     <maven-war-plugin.version>3.5.0</maven-war-plugin.version>
     <jakartaee-api.version>11.0.0-SNAPSHOT</jakartaee-api.version>
     <junit.version>4.13.2</junit.version>
-    <maven.compiler.source>1.8</maven.compiler.source>
-    <maven.compiler.target>1.8</maven.compiler.target>
+    <maven.compiler.source>17</maven.compiler.source>
+    <maven.compiler.target>17</maven.compiler.target>
     <tomee.version>11.0.0-SNAPSHOT</tomee.version>
   </properties>
   <dependencies>
diff --git a/examples/mp-faulttolerance-retry/pom.xml 
b/examples/mp-faulttolerance-retry/pom.xml
index ed76eb25fd..b0b866222b 100644
--- a/examples/mp-faulttolerance-retry/pom.xml
+++ b/examples/mp-faulttolerance-retry/pom.xml
@@ -23,14 +23,14 @@
   <packaging>war</packaging>
   <name>TomEE :: Examples :: Microprofile Fault Tolerance :: Retry</name>
   <properties>
-    
<version.microprofile.fault-tolerance-api>4.0.2</version.microprofile.fault-tolerance-api>
+    
<version.microprofile.fault-tolerance-api>4.1</version.microprofile.fault-tolerance-api>
     
<arquillian-junit-container.version>1.7.1.Final</arquillian-junit-container.version>
     <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
     <maven-war-plugin.version>3.5.0</maven-war-plugin.version>
-    <jakartaee-api.version>10.0</jakartaee-api.version>
+    <jakartaee-api.version>11.0.0-SNAPSHOT</jakartaee-api.version>
     <junit.version>4.13.2</junit.version>
-    <maven.compiler.source>1.8</maven.compiler.source>
-    <maven.compiler.target>1.8</maven.compiler.target>
+    <maven.compiler.source>17</maven.compiler.source>
+    <maven.compiler.target>17</maven.compiler.target>
     <tomee.version>11.0.0-SNAPSHOT</tomee.version>
   </properties>
   <dependencies>
diff --git a/examples/mp-faulttolerance-timeout/pom.xml 
b/examples/mp-faulttolerance-timeout/pom.xml
index 362d54c338..8a3b8d6575 100644
--- a/examples/mp-faulttolerance-timeout/pom.xml
+++ b/examples/mp-faulttolerance-timeout/pom.xml
@@ -23,15 +23,15 @@
   <packaging>war</packaging>
   <name>TomEE :: Examples :: Microprofile Fault Tolerance :: Timeout</name>
   <properties>
-    
<version.microprofile.fault-tolerance-api>4.0.2</version.microprofile.fault-tolerance-api>
+    
<version.microprofile.fault-tolerance-api>4.1</version.microprofile.fault-tolerance-api>
     
<arquillian-junit-container.version>1.7.1.Final</arquillian-junit-container.version>
     <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
     <maven-war-plugin.version>3.5.0</maven-war-plugin.version>
     <tomee.version>11.0.0-SNAPSHOT</tomee.version>
     <jakartaee-api.version>11.0.0-SNAPSHOT</jakartaee-api.version>
     <junit.version>4.13.2</junit.version>
-    <maven.compiler.source>1.8</maven.compiler.source>
-    <maven.compiler.target>1.8</maven.compiler.target>
+    <maven.compiler.source>17</maven.compiler.source>
+    <maven.compiler.target>17</maven.compiler.target>
   </properties>
   <dependencies>
     <dependency>
diff --git a/examples/mp-jwt-bean-validation-strongly-typed/pom.xml 
b/examples/mp-jwt-bean-validation-strongly-typed/pom.xml
index 81a824b214..d8d1e19b5a 100644
--- a/examples/mp-jwt-bean-validation-strongly-typed/pom.xml
+++ b/examples/mp-jwt-bean-validation-strongly-typed/pom.xml
@@ -28,7 +28,7 @@
     <version.jakartaee-api>11.0.0-SNAPSHOT</version.jakartaee-api>
     <tomee.version>11.0.0-SNAPSHOT</tomee.version>
     <version.shrinkwrap.resolver>3.3.4</version.shrinkwrap.resolver>
-    <mp-jwt.version>1.1</mp-jwt.version>
+    <mp-jwt.version>2.1</mp-jwt.version>
   </properties>
   <build>
     <defaultGoal>install</defaultGoal>
diff --git a/examples/mp-jwt-bean-validation/pom.xml 
b/examples/mp-jwt-bean-validation/pom.xml
index 77d17847f6..cc36b5f2e9 100644
--- a/examples/mp-jwt-bean-validation/pom.xml
+++ b/examples/mp-jwt-bean-validation/pom.xml
@@ -28,7 +28,7 @@
     <version.jakartaee-api>11.0.0-SNAPSHOT</version.jakartaee-api>
     <tomee.version>11.0.0-SNAPSHOT</tomee.version>
     <version.shrinkwrap.resolver>3.3.4</version.shrinkwrap.resolver>
-    <mp-jwt.version>1.1</mp-jwt.version>
+    <mp-jwt.version>2.1</mp-jwt.version>
   </properties>
   <build>
     <defaultGoal>install</defaultGoal>
diff --git a/examples/mp-openapi-reader/pom.xml 
b/examples/mp-openapi-reader/pom.xml
index 62be08d6d5..9df9f7ab3d 100644
--- a/examples/mp-openapi-reader/pom.xml
+++ b/examples/mp-openapi-reader/pom.xml
@@ -27,8 +27,8 @@
     <version.arquillian.bom>1.7.1.Final</version.arquillian.bom>
     <junit.version>4.13.2</junit.version>
     <tomee.version>11.0.0-SNAPSHOT</tomee.version>
-    
<version.microprofile.impl.openapi>3.13.0</version.microprofile.impl.openapi>
-    <version.openapi-api>3.1.1</version.openapi-api>
+    
<version.microprofile.impl.openapi>4.2.4</version.microprofile.impl.openapi>
+    <version.openapi-api>4.1</version.openapi-api>
   </properties>
   <dependencies>
     <dependency>
diff --git a/examples/mp-rest-client/pom.xml b/examples/mp-rest-client/pom.xml
index 8d5f50c709..52131a11d6 100644
--- a/examples/mp-rest-client/pom.xml
+++ b/examples/mp-rest-client/pom.xml
@@ -24,7 +24,7 @@
   <packaging>war</packaging>
   <name>TomEE :: Examples :: Microprofile REST Client</name>
   <properties>
-    <version.microprofile.rest-client>3.0.1</version.microprofile.rest-client>
+    <version.microprofile.rest-client>4.0</version.microprofile.rest-client>
     <version.jakartaee-api>11.0.0-SNAPSHOT</version.jakartaee-api>
     <version.arquillian.bom>1.7.1.Final</version.arquillian.bom>
     <junit.version>4.13.2</junit.version>
diff --git a/examples/mp-rest-jwt-public-key/pom.xml 
b/examples/mp-rest-jwt-public-key/pom.xml
index 7d997f2ee7..418e7a6e0c 100644
--- a/examples/mp-rest-jwt-public-key/pom.xml
+++ b/examples/mp-rest-jwt-public-key/pom.xml
@@ -28,9 +28,9 @@
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <tomee.version>11.0.0-SNAPSHOT</tomee.version>
-    <version.jakartaee-api>10.0</version.jakartaee-api>
+    <version.jakartaee-api>11.0.0-SNAPSHOT</version.jakartaee-api>
     <version.shrinkwrap.resolver>3.3.4</version.shrinkwrap.resolver>
-    <mp-jwt.version>1.1</mp-jwt.version>
+    <mp-jwt.version>2.1</mp-jwt.version>
   </properties>
 
   <build>
diff --git a/examples/security-openid/pom.xml b/examples/security-openid/pom.xml
index fd3d9d0a9e..d306b0b75d 100644
--- a/examples/security-openid/pom.xml
+++ b/examples/security-openid/pom.xml
@@ -28,7 +28,7 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <version.tomee>11.0.0-SNAPSHOT</version.tomee>
-        <version.microprofile.config>3.0.2</version.microprofile.config>
+        <version.microprofile.config>3.1</version.microprofile.config>
         <junit.jupiter.version>5.12.0</junit.jupiter.version>
         <arquillian.version>1.10.0.Final</arquillian.version>
         
<testcontainers-keycloak.version>3.9.0</testcontainers-keycloak.version>
diff --git a/examples/websocket-tls-basic-auth/pom.xml 
b/examples/websocket-tls-basic-auth/pom.xml
index fd156e0a95..bf64b9d173 100644
--- a/examples/websocket-tls-basic-auth/pom.xml
+++ b/examples/websocket-tls-basic-auth/pom.xml
@@ -26,7 +26,7 @@
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <jakartaee-api.version>11.0.0-SNAPSHOT</jakartaee-api.version>
-    <jakarta.websocket-api.version>2.0.0</jakarta.websocket-api.version>
+    <jakarta.websocket-api.version>2.2.0</jakarta.websocket-api.version>
     <tomee.classifier>webprofile</tomee.classifier>
     <tomcat.version>11.0.14</tomcat.version>
     <junit.version>4.13.2</junit.version>

Reply via email to