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

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


The following commit(s) were added to refs/heads/main by this push:
     new 72374dc1d1 Upgrade Quarkus to 3.13.0 (#6293)
72374dc1d1 is described below

commit 72374dc1d1a2a77185cb0e96b5e02eea30446db9
Author: James Netherton <jamesnether...@users.noreply.github.com>
AuthorDate: Wed Jul 24 18:48:21 2024 +0100

    Upgrade Quarkus to 3.13.0 (#6293)
    
    * Upgrade Quarkus to 3.13.0
    
    * Upgrade Quarkus CXF to 3.13.0
    
    * Disable cxf-soap SSL tests due to #6294
---
 docs/antora.yml                                    |   2 +-
 .../cxf/soap/ssl/it/CxfSoapGlobalTrustedSslIT.java |   2 +
 .../soap/ssl/it/CxfSoapGlobalTrustedSslTest.java   |   2 +
 .../soap/ssl/it/CxfSoapGlobalUntrustedSslIT.java   |   2 +
 .../soap/ssl/it/CxfSoapGlobalUntrustedSslTest.java |   2 +
 .../component/cxf/soap/ssl/it/CxfSoapSslIT.java    |   2 +
 .../component/cxf/soap/ssl/it/CxfSoapSslTest.java  |   2 +
 .../soap/wss/client/it/CxfSoapWssClientTest.java   |  13 +-
 pom.xml                                            |   4 +-
 poms/bom/src/main/generated/flattened-full-pom.xml | 558 +++++++++++----------
 .../src/main/generated/flattened-reduced-pom.xml   |  64 ++-
 .../generated/flattened-reduced-verbose-pom.xml    | 558 +++++++++++----------
 12 files changed, 630 insertions(+), 581 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index e7e91a2687..afebdbaa45 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -31,7 +31,7 @@ asciidoc:
     camel-version: 4.7.0 # replace ${camel.version}
     camel-docs-version: next
     camel-quarkus-version: 3.13.0 # replace ${camel-quarkus.version}
-    quarkus-version: 3.13.0.CR1 # replace ${quarkus.version}
+    quarkus-version: 3.13.0 # replace ${quarkus.version}
     graalvm-version: 23.1.2 # replace ${graalvm.version}
     graalvm-docs-version: jdk21 # replace ${graalvm-docs.version}
     mapstruct-version: 1.5.5.Final # replace ${mapstruct.version}
diff --git 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslIT.java
 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslIT.java
index d3642b9d3b..e93f3a5246 100644
--- 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslIT.java
+++ 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.component.cxf.soap.ssl.it;
 
 import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/6294";)
 @QuarkusIntegrationTest
 class CxfSoapGlobalTrustedSslIT extends CxfSoapGlobalTrustedSslTest {
 }
diff --git 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslTest.java
 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslTest.java
index 8fccffa4be..d6e0fb007c 100644
--- 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslTest.java
+++ 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalTrustedSslTest.java
@@ -20,10 +20,12 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.quarkus.test.junit.QuarkusTestProfile;
 import io.quarkus.test.junit.TestProfile;
 import io.restassured.RestAssured;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.equalTo;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/6294";)
 @QuarkusTest
 @TestProfile(CxfSoapGlobalTrustedSslTest.class)
 public class CxfSoapGlobalTrustedSslTest implements QuarkusTestProfile {
diff --git 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslIT.java
 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslIT.java
index 821865c669..37f0e2eacc 100644
--- 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslIT.java
+++ 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.component.cxf.soap.ssl.it;
 
 import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/6294";)
 @QuarkusIntegrationTest
 class CxfSoapGlobalUntrustedSslIT extends CxfSoapGlobalUntrustedSslTest {
 }
diff --git 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslTest.java
 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslTest.java
index d19ba9aaaa..1baf469293 100644
--- 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslTest.java
+++ 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapGlobalUntrustedSslTest.java
@@ -20,10 +20,12 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.quarkus.test.junit.QuarkusTestProfile;
 import io.quarkus.test.junit.TestProfile;
 import io.restassured.RestAssured;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.containsString;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/6294";)
 @QuarkusTest
 @TestProfile(CxfSoapGlobalUntrustedSslTest.class)
 public class CxfSoapGlobalUntrustedSslTest implements QuarkusTestProfile {
diff --git 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapSslIT.java
 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapSslIT.java
index b8b5fc9bf1..8548b2c0da 100644
--- 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapSslIT.java
+++ 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapSslIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.component.cxf.soap.ssl.it;
 
 import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/6294";)
 @QuarkusIntegrationTest
 class CxfSoapSslIT extends CxfSoapSslTest {
 }
diff --git 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapSslTest.java
 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapSslTest.java
index 9e632978c5..cdbe9237bd 100644
--- 
a/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapSslTest.java
+++ 
b/integration-test-groups/cxf-soap/cxf-soap-ssl/src/test/java/org/apache/camel/quarkus/component/cxf/soap/ssl/it/CxfSoapSslTest.java
@@ -20,12 +20,14 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.quarkus.test.junit.QuarkusTestProfile;
 import io.quarkus.test.junit.TestProfile;
 import io.restassured.RestAssured;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.containsString;
 import static org.hamcrest.Matchers.equalTo;
 
 // Tests require restart of Quarkus to avoid persisting of global ssl context.
+@Disabled("https://github.com/apache/camel-quarkus/issues/6294";)
 @QuarkusTest
 @TestProfile(CxfSoapSslTest.class)
 public class CxfSoapSslTest implements QuarkusTestProfile {
diff --git 
a/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/test/java/org/apache/camel/quarkus/component/cxf/soap/wss/client/it/CxfSoapWssClientTest.java
 
b/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/test/java/org/apache/camel/quarkus/component/cxf/soap/wss/client/it/CxfSoapWssClientTest.java
index 554f76369c..4b78e41b37 100644
--- 
a/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/test/java/org/apache/camel/quarkus/component/cxf/soap/wss/client/it/CxfSoapWssClientTest.java
+++ 
b/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/test/java/org/apache/camel/quarkus/component/cxf/soap/wss/client/it/CxfSoapWssClientTest.java
@@ -32,7 +32,7 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import jakarta.xml.ws.BindingProvider;
 import jakarta.xml.ws.Service;
-import jakarta.xml.ws.soap.SOAPFaultException;
+import jakarta.xml.ws.WebServiceException;
 import 
org.apache.camel.quarkus.components.cxf.soap.wss.client.helloworld.SayHelloService;
 import 
org.apache.camel.quarkus.components.cxf.soap.wss.client.helloworld.SayHelloWrongWS;
 import org.apache.cxf.ws.security.SecurityConstants;
@@ -114,8 +114,15 @@ class CxfSoapWssClientTest {
             try {
                 //always fails because there is no server implementation
                 createSayHelloWrongClient().sayHelloWrong("Sheldon");
-            } catch (SOAPFaultException e) {
-                return e.getMessage() != null && 
e.getMessage().toLowerCase().contains("connection refused");
+            } catch (WebServiceException e) {
+                Throwable cause = e.getCause();
+                if (cause != null) {
+                    Throwable parentCause = cause.getCause();
+                    if (parentCause != null) {
+                        return parentCause.getMessage() != null
+                                && 
parentCause.getMessage().toLowerCase().contains("connection refused");
+                    }
+                }
             }
             //can not happen (client does not work)
             return false;
diff --git a/pom.xml b/pom.xml
index ca4d718aec..98b13eb2e8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,7 +50,7 @@
         <optaplanner.version>9.37.0.Final</optaplanner.version><!-- This 
should be in sync with quarkus-platform 
https://repo1.maven.org/maven2/org/optaplanner/optaplanner-quarkus/ -->
         
<quarkiverse-amazonservices.version>2.16.0</quarkiverse-amazonservices.version><!--
 This should be in sync with quarkus-platform 
https://repo1.maven.org/maven2/io/quarkiverse/amazonservices/quarkus-amazon-services-parent/
 -->
         <quarkiverse-artemis.version>3.3.0</quarkiverse-artemis.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/artemis/quarkus-artemis-parent/ 
-->
-        <quarkiverse-cxf.version>3.12.0</quarkiverse-cxf.version><!-- This 
should be in sync with quarkus-platform 
https://repo1.maven.org/maven2/io/quarkiverse/cxf/quarkus-cxf-parent/ -->
+        <quarkiverse-cxf.version>3.13.0</quarkiverse-cxf.version><!-- This 
should be in sync with quarkus-platform 
https://repo1.maven.org/maven2/io/quarkiverse/cxf/quarkus-cxf-parent/ -->
         
<quarkiverse-freemarker.version>1.0.0</quarkiverse-freemarker.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/freemarker/quarkus-freemarker-parent/
 -->
         <quarkiverse-groovy.version>3.12.1</quarkiverse-groovy.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/groovy/quarkus-groovy-parent/ -->
         
<quarkiverse-jackson-jq.version>2.0.2</quarkiverse-jackson-jq.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/jackson-jq/quarkus-jackson-jq-parent/
 -->
@@ -62,7 +62,7 @@
         <quarkiverse-mybatis.version>2.2.3</quarkiverse-mybatis.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/mybatis/quarkus-mybatis-parent/ 
-->
         
<quarkiverse-pooled-jms.version>2.4.0</quarkiverse-pooled-jms.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/messaginghub/quarkus-pooled-jms-parent/
 -->
         <quarkiverse-tika.version>2.0.2</quarkiverse-tika.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ -->
-        <quarkus.version>3.13.0.CR1</quarkus.version><!-- 
https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
+        <quarkus.version>3.13.0</quarkus.version><!-- 
https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
         
<quarkus-hazelcast-client.version>4.0.0</quarkus-hazelcast-client.version><!-- 
https://repo1.maven.org/maven2/com/hazelcast/quarkus-hazelcast-client-bom/ -->
         <quarkus-qpid-jms.version>2.6.1</quarkus-qpid-jms.version><!-- This 
should be in sync with quarkus-platform 
https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ -->
 
diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index 41924e0438..5ad2059630 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -7404,488 +7404,498 @@
         <version>3.9.0</version><!-- org.apache:apache:30 -->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-features-logging</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-features-logging</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-features-metrics</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-features-metrics</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-frontend-jaxws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-frontend-jaxws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>org.ow2.asm</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>asm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.ow2.asm</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>asm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-transports-http</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-transports-http</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-transports-http-hc5</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-transports-http-hc5</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>org.slf4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jcl-over-slf4j</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.slf4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jcl-over-slf4j</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-mex</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-mex</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-rm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-rm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-wsdl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-wsdl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>org.ow2.asm</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>asm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.ow2.asm</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>asm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.services.sts</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-services-sts-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.services.sts</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-services-sts-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-boolean</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-boolean</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-dv</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-dv</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-javadoc</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-javadoc</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-pl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-pl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-ts</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-ts</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-wsdlextension</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-wsdlextension</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjc-utils</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-runtime</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjc-utils</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-runtime</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.santuario</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>xmlsec</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.santuario</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>xmlsec</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-axiom-api-stub</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-axiom-api-stub</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-integration-tracing-opentelemetry</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-integration-tracing-opentelemetry</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
         <exclusions>
           <exclusion>
-            <groupId>com.google.code.findbugs</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jsr305</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>com.google.code.findbugs</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jsr305</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-integration-tracing-opentelemetry-deployment</artifactId><!--
 io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-integration-tracing-opentelemetry-deployment</artifactId><!--
 io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-features-logging</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-features-logging</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-rt-features-logging-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-rt-features-logging-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-features-metrics</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-features-metrics</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-rt-features-metrics-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-rt-features-metrics-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-transports-http-hc5</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-transports-http-hc5</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-rt-transports-http-hc5-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-rt-transports-http-hc5-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-ws-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-ws-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-ws-security-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-ws-security-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-bc-stub</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-bc-stub</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-ws-rm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-ws-rm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-ws-rm-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-ws-rm-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-saaj</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-saaj</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-saaj-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-saaj-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-santuario-xmlsec</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-santuario-xmlsec</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-santuario-xmlsec-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-santuario-xmlsec-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-services-sts</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-services-sts</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-services-sts-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-services-sts-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-woodstox</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-vertx-client</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-woodstox-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-woodstox</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-xjc-plugins</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-woodstox-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-xjc-plugins-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-xjc-plugins</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>com.fasterxml.woodstox</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>woodstox-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>6.6.2</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-xjc-plugins-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>com.sun.xml.fastinfoset</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>FastInfoset</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>2.1.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>com.fasterxml.woodstox</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>woodstox-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>7.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
+      </dependency>
+      <dependency>
+        <groupId>com.sun.xml.fastinfoset</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>FastInfoset</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>2.1.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>javax.xml</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jsr173</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>javax.xml</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jsr173</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
           <exclusion>
-            <groupId>javax.xml.bind</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jsr173_api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>javax.xml.bind</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jsr173_api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>com.sun.xml.messaging.saaj</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>saaj-impl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>2.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>com.sun.xml.messaging.saaj</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>saaj-impl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>2.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>com.sun.activation</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jakarta.activation</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>com.sun.activation</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jakarta.activation</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-bindings</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-bindings</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-policy</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-policy</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-ws-security-common</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-ws-security-common</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>io.dropwizard.metrics</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>metrics-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>io.dropwizard.metrics</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>metrics-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-ws-security-dom</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-ws-security-dom</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-ws-security-policy-stax</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-ws-security-policy-stax</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-ws-security-stax</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-ws-security-stax</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.neethi</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>neethi</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.2.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.neethi</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>neethi</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.2.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.codehaus.woodstox</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>stax2-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.2.2</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.codehaus.woodstox</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>stax2-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.2.2</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.ehcache</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>ehcache</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.10.8</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <classifier>jakarta</classifier><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>org.ehcache</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>ehcache</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.10.8</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <classifier>jakarta</classifier><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
         <exclusions>
           <exclusion>
-            <groupId>javax.cache</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>cache-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>javax.cache</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>cache-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.glassfish.jaxb</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jaxb-runtime</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.5</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.glassfish.jaxb</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jaxb-runtime</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.5</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.glassfish.jaxb</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jaxb-xjc</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.5</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.glassfish.jaxb</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jaxb-xjc</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.5</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.jasypt</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jasypt</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>1.9.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.jasypt</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jasypt</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>1.9.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.jvnet.mimepull</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>mimepull</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>1.10.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>org.jvnet.mimepull</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>mimepull</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>1.10.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>jakarta.jws</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jakarta.jws-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>jakarta.jws</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jakarta.jws-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>jakarta.mail</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jakarta.mail-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>2.1.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>jakarta.mail</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jakarta.mail-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>2.1.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>jakarta.xml.soap</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jakarta.xml.soap-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>2.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>jakarta.xml.soap</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jakarta.xml.soap-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>2.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>com.sun.activation</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jakarta.activation</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>com.sun.activation</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jakarta.activation</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>jakarta.xml.ws</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jakarta.xml.ws-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>jakarta.xml.ws</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jakarta.xml.ws-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
+      </dependency>
+      <dependency>
+        <groupId>wsdl4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wsdl4j</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>1.6.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-integration-tracing-opentelemetry</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-integration-tracing-opentelemetry</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-bindings-soap</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-bindings-soap</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-bindings-xml</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-bindings-xml</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-databinding-jaxb</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-databinding-jaxb</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-frontend-simple</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-frontend-simple</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-management</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-management</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-rs-json-basic</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-rs-json-basic</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-rs-security-jose</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-rs-security-jose</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-security-saml</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-security-saml</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-addr</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-addr</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-policy</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-policy</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-common</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-common</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-java2ws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-java2ws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>cxf-rt-databinding-aegis</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>cxf-rt-databinding-aegis</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
           <exclusion>
-            <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>cxf-rt-javascript</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>cxf-rt-javascript</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-validator</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-validator</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-wsdlto-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-wsdlto-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
         <groupId>org.apache.groovy</groupId><!-- 
org.apache.groovy:groovy-bom:4.0.21 -->
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index 1818980850..22c0b8e1f7 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -7418,22 +7418,22 @@
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-axiom-api-stub</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-integration-tracing-opentelemetry</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
         <exclusions>
           <exclusion>
             <groupId>com.google.code.findbugs</groupId>
@@ -7444,117 +7444,122 @@
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         
<artifactId>quarkus-cxf-integration-tracing-opentelemetry-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-features-logging</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-features-logging-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-features-metrics</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-features-metrics-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-transports-http-hc5</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-transports-http-hc5-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-ws-security</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-ws-security-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-bc-stub</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-ws-rm</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-rt-ws-rm-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-saaj</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-saaj-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-santuario-xmlsec</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-santuario-xmlsec-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-services-sts</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-services-sts-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
+      </dependency>
+      <dependency>
+        <groupId>io.quarkiverse.cxf</groupId>
+        <artifactId>quarkus-cxf-vertx-client</artifactId>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-woodstox</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-woodstox-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-xjc-plugins</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>io.quarkiverse.cxf</groupId>
         <artifactId>quarkus-cxf-xjc-plugins-deployment</artifactId>
-        <version>3.12.0</version>
+        <version>3.13.0</version>
       </dependency>
       <dependency>
         <groupId>com.fasterxml.woodstox</groupId>
         <artifactId>woodstox-core</artifactId>
-        <version>6.6.2</version>
+        <version>7.0.0</version>
       </dependency>
       <dependency>
         <groupId>com.sun.xml.fastinfoset</groupId>
@@ -7686,6 +7691,11 @@
         <artifactId>jakarta.xml.ws-api</artifactId>
         <version>3.0.1</version>
       </dependency>
+      <dependency>
+        <groupId>wsdl4j</groupId>
+        <artifactId>wsdl4j</artifactId>
+        <version>1.6.3</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.cxf</groupId>
         <artifactId>cxf-integration-tracing-opentelemetry</artifactId>
diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
index 0257da1172..12d0096518 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -7303,488 +7303,498 @@
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-features-logging</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-features-logging</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-features-metrics</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-features-metrics</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-frontend-jaxws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-frontend-jaxws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>org.ow2.asm</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>asm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.ow2.asm</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>asm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-transports-http</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-transports-http</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-transports-http-hc5</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-transports-http-hc5</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>org.slf4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jcl-over-slf4j</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.slf4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jcl-over-slf4j</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-mex</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-mex</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-rm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-rm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-wsdl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-wsdl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>org.ow2.asm</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>asm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.ow2.asm</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>asm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.services.sts</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-services-sts-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.services.sts</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-services-sts-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-boolean</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-boolean</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-dv</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-dv</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-javadoc</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-javadoc</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-pl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-pl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-ts</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-ts</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-wsdlextension</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjcplugins</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-wsdlextension</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf.xjc-utils</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-xjc-runtime</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf.xjc-utils</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-xjc-runtime</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.santuario</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>xmlsec</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.santuario</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>xmlsec</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-axiom-api-stub</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-axiom-api-stub</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-integration-tracing-opentelemetry</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-integration-tracing-opentelemetry</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
         <exclusions>
           <exclusion>
-            <groupId>com.google.code.findbugs</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jsr305</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>com.google.code.findbugs</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jsr305</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-integration-tracing-opentelemetry-deployment</artifactId><!--
 io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-integration-tracing-opentelemetry-deployment</artifactId><!--
 io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-features-logging</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-features-logging</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-rt-features-logging-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-rt-features-logging-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-features-metrics</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-features-metrics</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-rt-features-metrics-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-rt-features-metrics-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-transports-http-hc5</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-transports-http-hc5</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        
<artifactId>quarkus-cxf-rt-transports-http-hc5-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        
<artifactId>quarkus-cxf-rt-transports-http-hc5-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-ws-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-ws-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-ws-security-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-ws-security-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-bc-stub</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-bc-stub</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-ws-rm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-ws-rm</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-rt-ws-rm-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-rt-ws-rm-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-saaj</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-saaj</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-saaj-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-saaj-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-santuario-xmlsec</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-santuario-xmlsec</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-santuario-xmlsec-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-santuario-xmlsec-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-services-sts</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-services-sts</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-services-sts-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-services-sts-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-woodstox</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-vertx-client</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-woodstox-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-woodstox</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-xjc-plugins</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-woodstox-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>quarkus-cxf-xjc-plugins-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.12.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-xjc-plugins</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>com.fasterxml.woodstox</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>woodstox-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>6.6.2</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>io.quarkiverse.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>quarkus-cxf-xjc-plugins-deployment</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.13.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>com.sun.xml.fastinfoset</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>FastInfoset</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>2.1.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>com.fasterxml.woodstox</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>woodstox-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>7.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
+      </dependency>
+      <dependency>
+        <groupId>com.sun.xml.fastinfoset</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>FastInfoset</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>2.1.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>javax.xml</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jsr173</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>javax.xml</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jsr173</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
           <exclusion>
-            <groupId>javax.xml.bind</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jsr173_api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>javax.xml.bind</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jsr173_api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>com.sun.xml.messaging.saaj</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>saaj-impl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>2.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>com.sun.xml.messaging.saaj</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>saaj-impl</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>2.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>com.sun.activation</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jakarta.activation</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>com.sun.activation</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jakarta.activation</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-bindings</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-bindings</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-policy</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-policy</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-ws-security-common</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-ws-security-common</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>io.dropwizard.metrics</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>metrics-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>io.dropwizard.metrics</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>metrics-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-ws-security-dom</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-ws-security-dom</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-ws-security-policy-stax</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-ws-security-policy-stax</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>wss4j-ws-security-stax</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.wss4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wss4j-ws-security-stax</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.neethi</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>neethi</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.2.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.neethi</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>neethi</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.2.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.codehaus.woodstox</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>stax2-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.2.2</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.codehaus.woodstox</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>stax2-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.2.2</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.ehcache</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>ehcache</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.10.8</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <classifier>jakarta</classifier><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>org.ehcache</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>ehcache</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.10.8</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <classifier>jakarta</classifier><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
         <exclusions>
           <exclusion>
-            <groupId>javax.cache</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>cache-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>javax.cache</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>cache-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.glassfish.jaxb</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jaxb-runtime</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.5</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.glassfish.jaxb</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jaxb-runtime</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.5</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.glassfish.jaxb</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jaxb-xjc</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.5</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.glassfish.jaxb</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jaxb-xjc</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.5</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.jasypt</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jasypt</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>1.9.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.jasypt</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jasypt</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>1.9.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.jvnet.mimepull</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>mimepull</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>1.10.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+        <groupId>org.jvnet.mimepull</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>mimepull</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>1.10.0</version><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
       </dependency>
       <dependency>
-        <groupId>jakarta.jws</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jakarta.jws-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>jakarta.jws</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jakarta.jws-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.0</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>jakarta.mail</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jakarta.mail-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>2.1.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>jakarta.mail</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jakarta.mail-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>2.1.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>jakarta.xml.soap</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jakarta.xml.soap-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>2.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>jakarta.xml.soap</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jakarta.xml.soap-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>2.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>com.sun.activation</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>jakarta.activation</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>com.sun.activation</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>jakarta.activation</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>jakarta.xml.ws</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>jakarta.xml.ws-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>3.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>jakarta.xml.ws</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>jakarta.xml.ws-api</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>3.0.1</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
+      </dependency>
+      <dependency>
+        <groupId>wsdl4j</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>wsdl4j</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>1.6.3</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-integration-tracing-opentelemetry</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-integration-tracing-opentelemetry</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-bindings-soap</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-bindings-soap</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-bindings-xml</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-bindings-xml</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-databinding-jaxb</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-databinding-jaxb</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-frontend-simple</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-frontend-simple</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-management</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-management</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-rs-json-basic</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-rs-json-basic</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-rs-security-jose</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-rs-security-jose</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-security-saml</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-security-saml</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-addr</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-addr</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-ws-policy</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-ws-policy</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-rt-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-rt-security</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-common</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-common</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-java2ws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-java2ws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
         <exclusions>
           <exclusion>
-            <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>cxf-rt-databinding-aegis</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>cxf-rt-databinding-aegis</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
           <exclusion>
-            <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-            <artifactId>cxf-rt-javascript</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
+            <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+            <artifactId>cxf-rt-javascript</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-validator</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-validator</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-wsdlto-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-wsdlto-core</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
-        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 -->
-        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.12.0 
-->
+        <groupId>org.apache.cxf</groupId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId><!-- 
io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 -->
+        <version>4.0.4</version><!-- io.quarkiverse.cxf:quarkus-cxf-bom:3.13.0 
-->
       </dependency>
       <dependency>
         <groupId>org.apache.groovy</groupId><!-- 
org.apache.groovy:groovy-bom:4.0.21 -->

Reply via email to