You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2022/10/08 07:24:05 UTC

[tomee] 02/03: Remove references to MP 2.0 APIs

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

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

commit 8fcea26ecd88cd9d7bd4f1a14c16e3bd07eb54cc
Author: David Blevins <db...@tomitribe.com>
AuthorDate: Sat Oct 8 01:41:04 2022 -0500

    Remove references to MP 2.0 APIs
---
 examples/mp-rest-jwt-jwk/pom.xml | 21 +++------------------
 1 file changed, 3 insertions(+), 18 deletions(-)

diff --git a/examples/mp-rest-jwt-jwk/pom.xml b/examples/mp-rest-jwt-jwk/pom.xml
index 8ae26cda03..8e8b1cfd49 100644
--- a/examples/mp-rest-jwt-jwk/pom.xml
+++ b/examples/mp-rest-jwt-jwk/pom.xml
@@ -25,11 +25,8 @@
   <name>TomEE :: Examples :: MP REST JWT JWK</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <version.jakartaee-api>9.1-M2</version.jakartaee-api>
     <tomee.version>9.0.0-M9-SNAPSHOT</tomee.version>
     <version.shrinkwrap.resolver>2.0.0</version.shrinkwrap.resolver>
-    <mp-jwt.version>1.1</mp-jwt.version>
-    <mp-rest-client.version>1.1</mp-rest-client.version>
   </properties>
   <build>
     <defaultGoal>install</defaultGoal>
@@ -96,21 +93,9 @@
   </dependencyManagement>
   <dependencies>
     <dependency>
-      <groupId>org.apache.tomee</groupId>
-      <artifactId>jakartaee-api</artifactId>
-      <version>${version.jakartaee-api}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.eclipse.microprofile.jwt</groupId>
-      <artifactId>microprofile-jwt-auth-api</artifactId>
-      <version>${mp-jwt.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.eclipse.microprofile.rest.client</groupId>
-      <artifactId>microprofile-rest-client-api</artifactId>
-      <version>${mp-rest-client.version}</version>
+      <groupId>org.apache.tomee.bom</groupId>
+      <artifactId>tomee-microprofile-api</artifactId>
+      <version>${tomee.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>