You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2021/11/17 16:59:09 UTC

[brooklyn-library] branch master updated: fix jakarta/javax ws.rs-api

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-library.git


The following commit(s) were added to refs/heads/master by this push:
     new 192ea5f  fix jakarta/javax ws.rs-api
192ea5f is described below

commit 192ea5f75d55bd082095350e4b50a59dc04b8b8c
Author: Alex Heneveld <al...@cloudsoftcorp.com>
AuthorDate: Wed Nov 17 16:58:28 2021 +0000

    fix jakarta/javax ws.rs-api
---
 software/database/pom.xml  | 4 ++--
 software/messaging/pom.xml | 5 ++---
 software/nosql/pom.xml     | 5 ++---
 3 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/software/database/pom.xml b/software/database/pom.xml
index 0a56a18..462e1ba 100644
--- a/software/database/pom.xml
+++ b/software/database/pom.xml
@@ -154,8 +154,8 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>javax.ws.rs</groupId>
-            <artifactId>javax.ws.rs-api</artifactId>
+            <groupId>jakarta.ws.rs</groupId>
+            <artifactId>jakarta.ws.rs-api</artifactId>
             <version>${jax-rs-api.version}</version>
             <scope>test</scope>
         </dependency>
diff --git a/software/messaging/pom.xml b/software/messaging/pom.xml
index 648936b..8de19f1 100644
--- a/software/messaging/pom.xml
+++ b/software/messaging/pom.xml
@@ -230,9 +230,8 @@
             <!-- We exclude jsr311-api transitive dependency from jclouds (for javax.ws.rs) due to version conflict.
                  Therefore explicitly bring this one in.
             -->
-            <groupId>javax.ws.rs</groupId>
-            <artifactId>javax.ws.rs-api</artifactId>
-            <version>${jax-rs-api.version}</version>
+            <groupId>jakarta.ws.rs</groupId>
+            <artifactId>jakarta.ws.rs-api</artifactId>
             <scope>test</scope>
         </dependency>
 
diff --git a/software/nosql/pom.xml b/software/nosql/pom.xml
index 134c011..e167bd9 100644
--- a/software/nosql/pom.xml
+++ b/software/nosql/pom.xml
@@ -226,9 +226,8 @@
             <!-- We exclude jsr311-api transitive dependency from jclouds (for javax.ws.rs) due to version conflict.
                  Therefore explicitly bring this one in.
             -->
-            <groupId>javax.ws.rs</groupId>
-            <artifactId>javax.ws.rs-api</artifactId>
-            <version>${jax-rs-api.version}</version>
+            <groupId>jakarta.ws.rs</groupId>
+            <artifactId>jakarta.ws.rs-api</artifactId>
             <scope>test</scope>
         </dependency>