You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2022/10/25 07:36:31 UTC

[camel-quarkus] 01/04: camel-quarkus-cxf-soap should depend on quarkus-cxf-rt-features-logging

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 cc373de5b42e16d61c69bc7255bdb9bab06d8aab
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Fri Oct 21 21:08:56 2022 +0200

    camel-quarkus-cxf-soap should depend on quarkus-cxf-rt-features-logging
    
    ... because camel-cxf-soap depends on cxf-rt-features-logging
---
 extensions/cxf-soap/deployment/pom.xml | 4 ++++
 extensions/cxf-soap/runtime/pom.xml    | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/extensions/cxf-soap/deployment/pom.xml b/extensions/cxf-soap/deployment/pom.xml
index dc926d0933..2614ab0dee 100644
--- a/extensions/cxf-soap/deployment/pom.xml
+++ b/extensions/cxf-soap/deployment/pom.xml
@@ -42,6 +42,10 @@
             <groupId>io.quarkiverse.cxf</groupId>
             <artifactId>quarkus-cxf-deployment</artifactId>
         </dependency>
+        <dependency>
+            <groupId>io.quarkiverse.cxf</groupId>
+            <artifactId>quarkus-cxf-rt-features-logging-deployment</artifactId>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/cxf-soap/runtime/pom.xml b/extensions/cxf-soap/runtime/pom.xml
index 2fd5f2a88b..8ead095699 100644
--- a/extensions/cxf-soap/runtime/pom.xml
+++ b/extensions/cxf-soap/runtime/pom.xml
@@ -48,6 +48,10 @@
             <groupId>io.quarkiverse.cxf</groupId>
             <artifactId>quarkus-cxf</artifactId>
         </dependency>
+        <dependency>
+            <groupId>io.quarkiverse.cxf</groupId>
+            <artifactId>quarkus-cxf-rt-features-logging</artifactId>
+        </dependency>
     </dependencies>
 
     <build>