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

ppalaga pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 5d69f1de73aff030bbe8337b5de6d03ed2ec4477
Author: James Netherton <jamesnether...@gmail.com>
AuthorDate: Tue May 25 09:17:14 2021 +0100

    Exclude jersey from jira extension and use the quarkus-rest-client
    
    Fixes #2650
---
 extensions/jira/deployment/pom.xml | 2 +-
 extensions/jira/runtime/pom.xml    | 2 +-
 poms/bom/pom.xml                   | 8 ++++++--
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/extensions/jira/deployment/pom.xml 
b/extensions/jira/deployment/pom.xml
index 3ff3ed6..7cc25ff 100644
--- a/extensions/jira/deployment/pom.xml
+++ b/extensions/jira/deployment/pom.xml
@@ -48,7 +48,7 @@
         </dependency>
         <dependency>
             <groupId>io.quarkus</groupId>
-            <artifactId>quarkus-resteasy-common-deployment</artifactId>
+            <artifactId>quarkus-rest-client-deployment</artifactId>
         </dependency>
     </dependencies>
 
diff --git a/extensions/jira/runtime/pom.xml b/extensions/jira/runtime/pom.xml
index 76b896f..2882036 100644
--- a/extensions/jira/runtime/pom.xml
+++ b/extensions/jira/runtime/pom.xml
@@ -95,7 +95,7 @@
         </dependency>
         <dependency>
             <groupId>io.quarkus</groupId>
-            <artifactId>quarkus-resteasy-common</artifactId>
+            <artifactId>quarkus-rest-client</artifactId>
         </dependency>
     </dependencies>
 
diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml
index 477ec07..6410767 100644
--- a/poms/bom/pom.xml
+++ b/poms/bom/pom.xml
@@ -1225,13 +1225,17 @@
                         <artifactId>jsr305</artifactId>
                     </exclusion>
                     <exclusion>
-                        <groupId>org.apache.httpcomponents</groupId>
-                        <artifactId>httpclient-cache</artifactId>
+                        <groupId>com.sun.jersey</groupId>
+                        <artifactId>*</artifactId>
                     </exclusion>
                     <exclusion>
                         <groupId>commons-logging</groupId>
                         <artifactId>commons-logging</artifactId>
                     </exclusion>
+                    <exclusion>
+                        <groupId>org.apache.httpcomponents</groupId>
+                        <artifactId>httpclient-cache</artifactId>
+                    </exclusion>
                 </exclusions>
             </dependency>
             <dependency>

Reply via email to