This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 2.13.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit bedc7e1e9ed9512d5ef8382a418de55bb0aed6c4 Author: Peter Palaga <[email protected]> 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 ba667d7aab..b33f9781ad 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 aa8d68c66e..cb636fb12d 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>
