This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit c6b63c6d1b5798ffb669fe94a1badb2897c66a14 Author: Jiri Ondrusek <[email protected]> AuthorDate: Fri Feb 13 16:52:44 2026 +0100 Fixed cxf-soap example because of CAMEL-22977 --- 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 f160bd9428..ed22d4bc95 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-ws-security-deployment</artifactId> + </dependency> </dependencies> <build> diff --git a/extensions/cxf-soap/runtime/pom.xml b/extensions/cxf-soap/runtime/pom.xml index 1a70744540..45cb1b3853 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-ws-security</artifactId> + </dependency> </dependencies> <build>
