From 42b098ff183584882021c9e3a15b63ec15dc80fd Mon Sep 17 00:00:00 2001 From: James Netherton Date: Thu, 22 Sep 2022 07:36:24 +0100 Subject: [PATCH 1/2] Upgrade Quarkus to 2.13.0.Final --- docs/antora.yml | 2 +- .../ROOT/pages/reference/extensions/core.adoc | 40 +++++++++---------- .../pages/reference/extensions/kamelet.adoc | 2 +- .../reference/extensions/opentelemetry.adoc | 12 +++--- .../pages/reference/extensions/yaml-dsl.adoc | 2 +- pom.xml | 2 +- 6 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docs/antora.yml b/docs/antora.yml index e668c224fa28..43752013a674 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -30,7 +30,7 @@ asciidoc: # Project versions camel-version: 3.18.2 # replace ${camel.version} camel-docs-version: 3.18.x # replace ${camel.docs.components.version} - quarkus-version: 2.13.0.CR1 # replace ${quarkus.version} + quarkus-version: 2.13.0.Final # replace ${quarkus.version} graalvm-version: 22.2.0 # replace ${graalvm.version} graalvm-docs-version: 22.2 min-maven-version: 3.8.2 # replace ${min-maven-version} diff --git a/docs/modules/ROOT/pages/reference/extensions/core.adoc b/docs/modules/ROOT/pages/reference/extensions/core.adoc index ac589e15b96f..f1c2fa5ef349 100644 --- a/docs/modules/ROOT/pages/reference/extensions/core.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/core.adoc @@ -138,60 +138,60 @@ When set to true, the `CamelRuntime` will be started automatically. |icon:lock[title=Fixed at build time] [[quarkus.camel.service.discovery.exclude-patterns]]`link:#quarkus.camel.service.discovery.exclude-patterns[quarkus.camel.service.discovery.exclude-patterns]` A comma-separated list of Ant-path style patterns to match Camel service definition files in the classpath. The services defined in the matching files will not be discoverable via the `org.apache.camel.spi.FactoryFinder` mechanism. - The excludes have higher precedence than includes. The excludes defined here can also be used to veto the discoverability of services included by Camel Quarkus extensions. - Example values: `META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar` +The excludes have higher precedence than includes. The excludes defined here can also be used to veto the discoverability of services included by Camel Quarkus extensions. +Example values: `META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar` | `string` | |icon:lock[title=Fixed at build time] [[quarkus.camel.service.discovery.include-patterns]]`link:#quarkus.camel.service.discovery.include-patterns[quarkus.camel.service.discovery.include-patterns]` A comma-separated list of Ant-path style patterns to match Camel service definition files in the classpath. The services defined in the matching files will be discoverable via the `org.apache.camel.spi.FactoryFinder` mechanism unless the given file is excluded via `exclude-patterns`. - Note that Camel Quarkus extensions may include some services by default. The services selected here added to those services and the exclusions defined in `exclude-patterns` are applied to the union set. - Example values: `META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar` +Note that Camel Quarkus extensions may include some services by default. The services selected here added to those services and the exclusions defined in `exclude-patterns` are applied to the union set. +Example values: `META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar` | `string` | |icon:lock[title=Fixed at build time] [[quarkus.camel.service.registry.exclude-patterns]]`link:#quarkus.camel.service.registry.exclude-patterns[quarkus.camel.service.registry.exclude-patterns]` A comma-separated list of Ant-path style patterns to match Camel service definition files in the classpath. The services defined in the matching files will not be added to Camel registry during application's static initialization. - The excludes have higher precedence than includes. The excludes defined here can also be used to veto the registration of services included by Camel Quarkus extensions. - Example values: `META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar` +The excludes have higher precedence than includes. The excludes defined here can also be used to veto the registration of services included by Camel Quarkus extensions. +Example values: `META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar` | `string` | |icon:lock[title=Fixed at build time] [[quarkus.camel.service.registry.include-patterns]]`link:#quarkus.camel.service.registry.include-patterns[quarkus.camel.service.registry.include-patterns]` A comma-separated list of Ant-path style patterns to match Camel service definition files in the classpath. The services defined in the matching files will be added to Camel registry during application's static initialization unless the given file is excluded via `exclude-patterns`. - Note that Camel Quarkus extensions may include some services by default. The services selected here added to those services and the exclusions defined in `exclude-patterns` are applied to the union set. - Example values: `META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar` +Note that Camel Quarkus extensions may include some services by default. The services selected here added to those services and the exclusions defined in `exclude-patterns` are applied to the union set. +Example values: `META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar` | `string` | |icon:lock[title=Fixed at build time] [[quarkus.camel.runtime-catalog.components]]`link:#quarkus.camel.runtime-catalog.components[quarkus.camel.runtime-catalog.components]` If `true` the Runtime Camel Catalog embedded in the application will contain JSON schemas of Camel components available in the application; otherwise component JSON schemas will not be available in the Runtime Camel Catalog and any attempt to access those will result in a RuntimeException. - Setting this to `false` helps to reduce the size of the native image. In JVM mode, there is no real benefit of setting this flag to `false` except for making the behavior consistent with native mode. +Setting this to `false` helps to reduce the size of the native image. In JVM mode, there is no real benefit of setting this flag to `false` except for making the behavior consistent with native mode. | `boolean` | `true` |icon:lock[title=Fixed at build time] [[quarkus.camel.runtime-catalog.languages]]`link:#quarkus.camel.runtime-catalog.languages[quarkus.camel.runtime-catalog.languages]` If `true` the Runtime Camel Catalog embedded in the application will contain JSON schemas of Camel languages available in the application; otherwise language JSON schemas will not be available in the Runtime Camel Catalog and any attempt to access those will result in a RuntimeException. - Setting this to `false` helps to reduce the size of the native image. In JVM mode, there is no real benefit of setting this flag to `false` except for making the behavior consistent with native mode. +Setting this to `false` helps to reduce the size of the native image. In JVM mode, there is no real benefit of setting this flag to `false` except for making the behavior consistent with native mode. | `boolean` | `true` |icon:lock[title=Fixed at build time] [[quarkus.camel.runtime-catalog.dataformats]]`link:#quarkus.camel.runtime-catalog.dataformats[quarkus.camel.runtime-catalog.dataformats]` If `true` the Runtime Camel Catalog embedded in the application will contain JSON schemas of Camel data formats available in the application; otherwise data format JSON schemas will not be available in the Runtime Camel Catalog and any attempt to access those will result in a RuntimeException. - Setting this to `false` helps to reduce the size of the native image. In JVM mode, there is no real benefit of setting this flag to `false` except for making the behavior consistent with native mode. +Setting this to `false` helps to reduce the size of the native image. In JVM mode, there is no real benefit of setting this flag to `false` except for making the behavior consistent with native mode. | `boolean` | `true` |icon:lock[title=Fixed at build time] [[quarkus.camel.runtime-catalog.models]]`link:#quarkus.camel.runtime-catalog.models[quarkus.camel.runtime-catalog.models]` If `true` the Runtime Camel Catalog embedded in the application will contain JSON schemas of Camel EIP models available in the application; otherwise EIP model JSON schemas will not be available in the Runtime Camel Catalog and any attempt to access those will result in a RuntimeException. - Setting this to `false` helps to reduce the size of the native image. In JVM mode, there is no real benefit of setting this flag to `false` except for making the behavior consistent with native mode. +Setting this to `false` helps to reduce the size of the native image. In JVM mode, there is no real benefit of setting this flag to `false` except for making the behavior consistent with native mode. | `boolean` | `true` @@ -228,18 +228,18 @@ Replaced by `quarkus.native.resources.includes` in Camel Quarkus 2.0.0. Using th |icon:lock[title=Fixed at build time] [[quarkus.camel.native.reflection.exclude-patterns]]`link:#quarkus.camel.native.reflection.exclude-patterns[quarkus.camel.native.reflection.exclude-patterns]` A comma separated list of Ant-path style patterns to match class names that should be excluded from registering for reflection. Use the class name format as returned by the `java.lang.Class.getName()` method: package segments delimited by period `.` and inner classes by dollar sign `$`. - This option narrows down the set selected by `include-patterns`. By default, no classes are excluded. - This option cannot be used to unregister classes which have been registered internally by Quarkus extensions. +This option narrows down the set selected by `include-patterns`. By default, no classes are excluded. +This option cannot be used to unregister classes which have been registered internally by Quarkus extensions. | `string` | |icon:lock[title=Fixed at build time] [[quarkus.camel.native.reflection.include-patterns]]`link:#quarkus.camel.native.reflection.include-patterns[quarkus.camel.native.reflection.include-patterns]` A comma separated list of Ant-path style patterns to match class names that should be registered for reflection. Use the class name format as returned by the `java.lang.Class.getName()` method: package segments delimited by period `.` and inner classes by dollar sign `$`. - By default, no classes are included. The set selected by this option can be narrowed down by `exclude-patterns`. - Note that Quarkus extensions typically register the required classes for reflection by themselves. This option is useful in situations when the built in functionality is not sufficient. - Note that this option enables the full reflective access for constructors, fields and methods. If you need a finer grained control, consider using `io.quarkus.runtime.annotations.RegisterForReflection` annotation in your Java code. - For this option to work properly, at least one of the following conditions must be satisfied: +By default, no classes are included. The set selected by this option can be narrowed down by `exclude-patterns`. +Note that Quarkus extensions typically register the required classes for reflection by themselves. This option is useful in situations when the built in functionality is not sufficient. +Note that this option enables the full reflective access for constructors, fields and methods. If you need a finer grained control, consider using `io.quarkus.runtime.annotations.RegisterForReflection` annotation in your Java code. +For this option to work properly, at least one of the following conditions must be satisfied: - There are no wildcards (`++*++` or `/`) in the patterns - The artifacts containing the selected classes contain a Jandex index (`META-INF/jandex.idx`) - The artifacts containing the selected classes are registered for indexing using the `quarkus.index-dependency.++*++` family of options in `application.properties` - e.g. quarkus.index-dependency.my-dep.group-id = org.my-group quarkus.index-dependency.my-dep.artifact-id = my-artifact where `my-dep` is a label of your choice to tell Quarkus that `org.my-group` and with `my-artifact` belong together. @@ -261,8 +261,8 @@ What to do if it is not possible to extract CSimple expressions from a route def |icon:lock[title=Fixed at build time] [[quarkus.camel.event-bridge.enabled]]`link:#quarkus.camel.event-bridge.enabled[quarkus.camel.event-bridge.enabled]` Whether to enable the bridging of Camel events to CDI events. - This allows CDI observers to be configured for Camel events. E.g. those belonging to the `org.apache.camel.quarkus.core.events`, `org.apache.camel.quarkus.main.events` & `org.apache.camel.impl.event` packages. - Note that this configuration item only has any effect when observers configured for Camel events are present in the application. +This allows CDI observers to be configured for Camel events. E.g. those belonging to the `org.apache.camel.quarkus.core.events`, `org.apache.camel.quarkus.main.events` & `org.apache.camel.impl.event` packages. +Note that this configuration item only has any effect when observers configured for Camel events are present in the application. | `boolean` | `true` diff --git a/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc b/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc index 7d6719b5505c..39853dac9130 100644 --- a/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/kamelet.adoc @@ -79,7 +79,7 @@ This artifact add all the kamelets available in the catalog to your Camel Quarku |icon:lock[title=Fixed at build time] [[quarkus.camel.kamelet.identifiers]]`link:#quarkus.camel.kamelet.identifiers[quarkus.camel.kamelet.identifiers]` List of kamelets identifiers to pre-load at build time. - Each individual identifier is used to set the related `org.apache.camel.model.RouteTemplateDefinition` id. +Each individual identifier is used to set the related `org.apache.camel.model.RouteTemplateDefinition` id. | `string` | |=== diff --git a/docs/modules/ROOT/pages/reference/extensions/opentelemetry.adoc b/docs/modules/ROOT/pages/reference/extensions/opentelemetry.adoc index d50317df3907..5d1dce8a4836 100644 --- a/docs/modules/ROOT/pages/reference/extensions/opentelemetry.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/opentelemetry.adoc @@ -112,12 +112,12 @@ Sets whether header names need to be encoded. Can be useful in situations where |icon:lock[title=Fixed at build time] [[quarkus.camel.opentelemetry.exclude-patterns]]`link:#quarkus.camel.opentelemetry.exclude-patterns[quarkus.camel.opentelemetry.exclude-patterns]` Sets whether to disable tracing for endpoint URIs that match the given patterns. The pattern can take the following forms: - - 1. An exact match on the endpoint URI. E.g platform-http:/some/path - - 2. A wildcard match. E.g platform-http:++*++ - - 3. A regular expression matching the endpoint URI. E.g platform-http:/prefix/.++*++ + +1. An exact match on the endpoint URI. E.g platform-http:/some/path + +2. A wildcard match. E.g platform-http:++*++ + +3. A regular expression matching the endpoint URI. E.g platform-http:/prefix/.++*++ | `string` | |=== diff --git a/docs/modules/ROOT/pages/reference/extensions/yaml-dsl.adoc b/docs/modules/ROOT/pages/reference/extensions/yaml-dsl.adoc index 2bbcee0aa409..ebabf902d0cb 100644 --- a/docs/modules/ROOT/pages/reference/extensions/yaml-dsl.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/yaml-dsl.adoc @@ -55,7 +55,7 @@ endif::[] |icon:lock[title=Fixed at build time] [[quarkus.camel.yaml.flow-mode]]`link:#quarkus.camel.yaml.flow-mode[quarkus.camel.yaml.flow-mode]` If `true` the YAML DSL support flow-mode which allow to write more concise routes as for EIPs that have their own output like filter, aggregate, split, etc. the `steps` element can be omitted an in that case, the next processing step is automatically wired to the EIP's outputs. - As example, a YAML DSL to process only the timer events from 5 to 10 would look like: `- from: +As example, a YAML DSL to process only the timer events from 5 to 10 would look like: `- from: uri: "timer:tick" steps: - filter: diff --git a/pom.xml b/pom.xml index 8f8c40430630..f7c14eb465df 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ 2.9.1 1.0.4 1.0.3 - 2.13.0.CR1 + 2.13.0.Final 3.0.0 0.36.0 From 56f6a01c6604a15139458b9696a7b0e0e9369747 Mon Sep 17 00:00:00 2001 From: Peter Palaga Date: Thu, 22 Sep 2022 08:56:30 +0200 Subject: [PATCH 2/2] Upgrade to quarkus-cxf 1.5.1 --- extensions/xmlsecurity/deployment/pom.xml | 4 +- extensions/xmlsecurity/runtime/pom.xml | 4 +- pom.xml | 7 +- poms/bom/pom.xml | 132 +---- .../src/main/generated/flattened-full-pom.xml | 473 +++++++++--------- .../main/generated/flattened-reduced-pom.xml | 242 ++++----- .../flattened-reduced-verbose-pom.xml | 454 ++++++++--------- 7 files changed, 586 insertions(+), 730 deletions(-) diff --git a/extensions/xmlsecurity/deployment/pom.xml b/extensions/xmlsecurity/deployment/pom.xml index 3181f245497f..d77e17529b54 100644 --- a/extensions/xmlsecurity/deployment/pom.xml +++ b/extensions/xmlsecurity/deployment/pom.xml @@ -35,8 +35,8 @@ quarkus-jaxp-deployment - io.quarkiverse.cxf - quarkus-cxf-santuario-deployment + io.quarkiverse.xmlsec + quarkus-xmlsec-deployment org.apache.camel.quarkus diff --git a/extensions/xmlsecurity/runtime/pom.xml b/extensions/xmlsecurity/runtime/pom.xml index f0248a1d16f2..20934e96a7a0 100644 --- a/extensions/xmlsecurity/runtime/pom.xml +++ b/extensions/xmlsecurity/runtime/pom.xml @@ -41,8 +41,8 @@ quarkus-jaxp - io.quarkiverse.cxf - quarkus-cxf-santuario + io.quarkiverse.xmlsec + quarkus-xmlsec org.apache.camel.quarkus diff --git a/pom.xml b/pom.xml index f7c14eb465df..9944226c3b86 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ 8.27.0.Final 1.1.2 1.2.0 - 1.5.0 + 1.5.1 0.3.0 1.1.0 2.1.0 @@ -87,7 +87,6 @@ 3.5.3 3.3.2 ${eddsa-version} - 3.10.1 2.3.31 0.6.2 1.111 @@ -123,14 +122,12 @@ ${libthrift-version} 1.12.0 2.4.14.Final - 3.2.0 ${squareup-okio-version} 0.31.0 0.25.0 3.19.3 ${reactor-netty-version} 2.5.0 - 1.5.3 3.18.0 ${spring5-version} 1.32 @@ -140,11 +137,9 @@ ${xchange-version} ${xerces-version} 2.7 - 2.3.0 ${xstream-version} ${web3j-version} ${web3j-quorum-version} - ${woodstox-core-version} ${solr-zookeeper-version} 3.3.3 diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml index 01d90230b0fd..ab872e7cb931 100644 --- a/poms/bom/pom.xml +++ b/poms/bom/pom.xml @@ -9750,11 +9750,6 @@ kryo ${kryo.version} - - com.fasterxml.woodstox - woodstox-core - ${woodstox-core.version} - com.github.java-json-tools json-patch @@ -9851,11 +9846,6 @@ - - com.sun.xml.messaging.saaj - saaj-impl - ${saaj.impl.version} - com.thoughtworks.xstream xstream @@ -10088,59 +10078,7 @@ curator-x-discovery ${curator.version} - - org.apache.cxf - cxf-core - ${cxf.version} - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-bindings-soap - ${cxf.version} - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-frontend-jaxws - ${cxf.version} - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-ws-addr - ${cxf.version} - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - + org.apache.cxf cxf-rt-ws-policy ${cxf.version} @@ -10159,45 +10097,7 @@ - - org.apache.cxf - cxf-rt-ws-rm - ${cxf.version} - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-wsdl - ${cxf.version} - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - + org.apache.cxf.xjc-utils cxf-xjc-runtime ${cxf.xjc-utils.version} @@ -10257,26 +10157,6 @@ kudu-client ${kudu.version} - - org.apache.neethi - neethi - ${neethi.version} - - - org.apache.santuario - xmlsec - ${xmlsec.version} - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.xmlgraphics xmlgraphics-commons @@ -10347,11 +10227,6 @@ org.eclipse.jgit ${jgit.version} - - org.ehcache - ehcache - ${ehcache.version} - org.graalvm.js js @@ -10584,7 +10459,7 @@ ca.uhn.hapi:* io.quarkiverse.cxf:* net.openhft:affinity - org.apache.cxf.xjc-utils:cxf-xjc-runtime + org.apache.cxf.xjc-utils:cxf-xjc-runtime @@ -10641,7 +10516,6 @@ com.fasterxml.jackson.module:jackson-module-jaxb-annotations jakarta.activation:jakarta.activation-api,jakarta.xml.bind:jakarta.xml.bind-api - diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml b/poms/bom/src/main/generated/flattened-full-pom.xml index 413be45e9ee7..76c329b7853e 100644 --- a/poms/bom/src/main/generated/flattened-full-pom.xml +++ b/poms/bom/src/main/generated/flattened-full-pom.xml @@ -9685,11 +9685,6 @@ kryo 2.24.0 - - com.fasterxml.woodstox - woodstox-core - 6.1.1 - com.github.java-json-tools json-patch @@ -9786,11 +9781,6 @@ - - com.sun.xml.messaging.saaj - saaj-impl - 1.5.3 - com.thoughtworks.xstream xstream @@ -10029,58 +10019,6 @@ curator-x-discovery 4.3.0 - - org.apache.cxf - cxf-core - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-bindings-soap - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-frontend-jaxws - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-ws-addr - 3.5.3 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - org.apache.cxf cxf-rt-ws-policy @@ -10100,44 +10038,6 @@ - - org.apache.cxf - cxf-rt-ws-rm - 3.5.3 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-wsdl - 3.5.3 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - org.apache.cxf.xjc-utils cxf-xjc-runtime @@ -10210,26 +10110,6 @@ kudu-client 1.15.0 - - org.apache.neethi - neethi - 3.2.0 - - - org.apache.santuario - xmlsec - 2.3.0 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.xmlgraphics xmlgraphics-commons @@ -10300,11 +10180,6 @@ org.eclipse.jgit 6.2.0.202206071550-r - - org.ehcache - ehcache - 3.10.1 - org.graalvm.js js @@ -10508,230 +10383,338 @@ 2.12.2 - org.apache.cxf - cxf-rt-features-logging - 3.5.3 + org.apache.cxf + cxf-core + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.cxf + cxf-rt-features-logging + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + + org.apache.cxf + cxf-rt-features-metrics + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.apache.cxf - cxf-rt-features-metrics - 3.5.3 + org.apache.cxf + cxf-rt-frontend-jaxws + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.glassfish.jaxb + jaxb-runtime + + + org.ow2.asm + asm - org.apache.cxf - cxf-rt-transports-http - 3.5.3 + org.apache.cxf + cxf-rt-transports-http + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.apache.cxf - cxf-rt-transports-http-hc5 - 3.5.3 + org.apache.cxf + cxf-rt-transports-http-hc5 + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.slf4j - jcl-over-slf4j + org.slf4j + jcl-over-slf4j - org.apache.cxf - cxf-rt-ws-mex - 3.5.3 + org.apache.cxf + cxf-rt-ws-mex + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.ow2.asm - asm + org.ow2.asm + asm - org.apache.cxf - cxf-rt-ws-security - 3.5.3 + org.apache.cxf + cxf-rt-ws-security + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.ow2.asm - asm + org.ow2.asm + asm - io.quarkiverse.cxf - quarkus-cxf - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-deployment + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-logging + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-logging-deployment + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-deployment - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-rt-features-metrics + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-features-logging - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-rt-features-metrics-deployment + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-features-logging-deployment - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-rt-transports-http-hc5 + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-features-metrics - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-rt-transports-http-hc5-deployment + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-features-metrics-deployment - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-rt-ws-security + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-transports-http-hc5 - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-rt-ws-security-deployment + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-transports-http-hc5-deployment - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-santuario + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-ws-security - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-santuario-deployment + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-ws-security-deployment - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-woodstox + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-woodstox-deployment + 1.5.1 + + + com.fasterxml.woodstox + woodstox-core + 6.3.1 + + + com.sun.xml.messaging.saaj + saaj-impl + 1.5.3 + + + org.apache.neethi + neethi + 3.2.0 + + + org.ehcache + ehcache + 3.10.1 + + + org.glassfish.jaxb + jaxb-runtime + + + + + org.jvnet.mimepull + mimepull + 1.9.14 + + + org.apache.santuario + xmlsec + 2.3.2 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + - io.quarkiverse.cxf - quarkus-cxf-santuario - 1.5.0 + io.quarkiverse.xmlsec + quarkus-xmlsec + 1.1.1 - io.quarkiverse.cxf - quarkus-cxf-santuario-deployment - 1.5.0 + io.quarkiverse.xmlsec + quarkus-xmlsec-deployment + 1.1.1 - io.quarkiverse.cxf - quarkus-cxf-woodstox - 1.5.0 + org.apache.cxf + cxf-rt-bindings-soap + 3.5.3 - io.quarkiverse.cxf - quarkus-cxf-woodstox-deployment - 1.5.0 + org.apache.cxf + cxf-rt-bindings-xml + 3.5.3 - org.jvnet.mimepull - mimepull - 1.9.14 + org.apache.cxf + cxf-rt-databinding-jaxb + 3.5.3 - org.apache.cxf - cxf-rt-bindings-xml - 3.5.3 + org.apache.cxf + cxf-rt-frontend-simple + 3.5.3 - org.apache.cxf - cxf-rt-databinding-jaxb - 3.5.3 + org.apache.cxf + cxf-rt-security-saml + 3.5.3 - org.apache.cxf - cxf-rt-frontend-simple - 3.5.3 + org.apache.cxf + cxf-rt-wsdl + 3.5.3 - org.apache.cxf - cxf-rt-security-saml - 3.5.3 + org.apache.cxf + cxf-rt-ws-addr + 3.5.3 - org.apache.cxf - cxf-rt-security - 3.5.3 + org.apache.cxf + cxf-rt-security + 3.5.3 org.codehaus.groovy diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml b/poms/bom/src/main/generated/flattened-reduced-pom.xml index 6424e6e0a075..33c847bbde0e 100644 --- a/poms/bom/src/main/generated/flattened-reduced-pom.xml +++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml @@ -9685,11 +9685,6 @@ kryo 2.24.0 - - com.fasterxml.woodstox - woodstox-core - 6.1.1 - com.github.java-json-tools json-patch @@ -9786,11 +9781,6 @@ - - com.sun.xml.messaging.saaj - saaj-impl - 1.5.3 - com.thoughtworks.xstream xstream @@ -10024,58 +10014,6 @@ curator-x-discovery 4.3.0 - - org.apache.cxf - cxf-core - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-bindings-soap - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-frontend-jaxws - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-ws-addr - 3.5.3 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - org.apache.cxf cxf-rt-ws-policy @@ -10095,25 +10033,6 @@ - - org.apache.cxf - cxf-rt-wsdl - 3.5.3 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - org.apache.cxf.xjc-utils cxf-xjc-runtime @@ -10186,26 +10105,6 @@ kudu-client 1.15.0 - - org.apache.neethi - neethi - 3.2.0 - - - org.apache.santuario - xmlsec - 2.3.0 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.xmlgraphics xmlgraphics-commons @@ -10276,11 +10175,6 @@ org.eclipse.jgit 6.2.0.202206071550-r - - org.ehcache - ehcache - 3.10.1 - org.graalvm.js js @@ -10468,6 +10362,21 @@ + + org.apache.cxf + cxf-core + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.cxf cxf-rt-features-logging @@ -10506,6 +10415,33 @@ + + org.apache.cxf + cxf-rt-frontend-jaxws + 3.5.3 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.glassfish.jaxb + jaxb-runtime + + + org.ow2.asm + asm + + + org.apache.cxf cxf-rt-transports-http @@ -10597,78 +10533,134 @@ io.quarkiverse.cxf quarkus-cxf - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-deployment - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-rt-features-logging - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-rt-features-logging-deployment - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-rt-features-metrics - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-rt-features-metrics-deployment - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-rt-transports-http-hc5 - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-rt-transports-http-hc5-deployment - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-rt-ws-security - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-rt-ws-security-deployment - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-santuario - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-santuario-deployment - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-woodstox - 1.5.0 + 1.5.1 io.quarkiverse.cxf quarkus-cxf-woodstox-deployment - 1.5.0 + 1.5.1 + + + com.fasterxml.woodstox + woodstox-core + 6.3.1 + + + com.sun.xml.messaging.saaj + saaj-impl + 1.5.3 + + + org.apache.neethi + neethi + 3.2.0 + + + org.ehcache + ehcache + 3.10.1 + + + org.glassfish.jaxb + jaxb-runtime + + org.jvnet.mimepull mimepull 1.9.14 + + org.apache.santuario + xmlsec + 2.3.2 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + + + + io.quarkiverse.xmlsec + quarkus-xmlsec + 1.1.1 + + + io.quarkiverse.xmlsec + quarkus-xmlsec-deployment + 1.1.1 + + + org.apache.cxf + cxf-rt-bindings-soap + 3.5.3 + org.apache.cxf cxf-rt-bindings-xml @@ -10689,6 +10681,16 @@ cxf-rt-security-saml 3.5.3 + + org.apache.cxf + cxf-rt-wsdl + 3.5.3 + + + org.apache.cxf + cxf-rt-ws-addr + 3.5.3 + org.apache.cxf cxf-rt-security 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 35804aff8bad..a588b68c3b66 100644 --- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml +++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml @@ -9685,11 +9685,6 @@ kryo 2.24.0 - - com.fasterxml.woodstox - woodstox-core - 6.1.1 - com.github.java-json-tools json-patch @@ -9786,11 +9781,6 @@ - - com.sun.xml.messaging.saaj - saaj-impl - 1.5.3 - com.thoughtworks.xstream xstream @@ -10024,58 +10014,6 @@ curator-x-discovery 4.3.0 - - org.apache.cxf - cxf-core - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-bindings-soap - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-frontend-jaxws - 3.5.3 - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - - - org.apache.cxf - cxf-rt-ws-addr - 3.5.3 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - org.apache.cxf cxf-rt-ws-policy @@ -10095,25 +10033,6 @@ - - org.apache.cxf - cxf-rt-wsdl - 3.5.3 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.geronimo.specs - geronimo-jta_1.1_spec - - - org.apache.cxf.xjc-utils cxf-xjc-runtime @@ -10186,26 +10105,6 @@ kudu-client 1.15.0 - - org.apache.neethi - neethi - 3.2.0 - - - org.apache.santuario - xmlsec - 2.3.0 - - - jakarta.activation - jakarta.activation-api - - - jakarta.xml.bind - jakarta.xml.bind-api - - - org.apache.xmlgraphics xmlgraphics-commons @@ -10276,11 +10175,6 @@ org.eclipse.jgit 6.2.0.202206071550-r - - org.ehcache - ehcache - 3.10.1 - org.graalvm.js js @@ -10469,230 +10363,338 @@ - org.apache.cxf - cxf-rt-features-logging - 3.5.3 + org.apache.cxf + cxf-core + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api + + + + + org.apache.cxf + cxf-rt-features-logging + 3.5.3 + + + jakarta.activation + jakarta.activation-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.apache.cxf - cxf-rt-features-metrics - 3.5.3 + org.apache.cxf + cxf-rt-features-metrics + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.apache.cxf - cxf-rt-transports-http - 3.5.3 + org.apache.cxf + cxf-rt-frontend-jaxws + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api - jakarta.xml.bind - jakarta.xml.bind-api + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.glassfish.jaxb + jaxb-runtime + + + org.ow2.asm + asm - org.apache.cxf - cxf-rt-transports-http-hc5 - 3.5.3 + org.apache.cxf + cxf-rt-transports-http + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api - jakarta.xml.bind - jakarta.xml.bind-api + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + + org.apache.cxf + cxf-rt-transports-http-hc5 + 3.5.3 + - org.apache.geronimo.specs - geronimo-jta_1.1_spec + jakarta.activation + jakarta.activation-api - org.slf4j - jcl-over-slf4j + jakarta.xml.bind + jakarta.xml.bind-api + + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + + + org.slf4j + jcl-over-slf4j - org.apache.cxf - cxf-rt-ws-mex - 3.5.3 + org.apache.cxf + cxf-rt-ws-mex + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.ow2.asm - asm + org.ow2.asm + asm - org.apache.cxf - cxf-rt-ws-security - 3.5.3 + org.apache.cxf + cxf-rt-ws-security + 3.5.3 - jakarta.activation - jakarta.activation-api + jakarta.activation + jakarta.activation-api - jakarta.xml.bind - jakarta.xml.bind-api + jakarta.xml.bind + jakarta.xml.bind-api - org.apache.geronimo.specs - geronimo-jta_1.1_spec + org.apache.geronimo.specs + geronimo-jta_1.1_spec - org.ow2.asm - asm + org.ow2.asm + asm - io.quarkiverse.cxf - quarkus-cxf - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-deployment + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-logging + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-logging-deployment + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-metrics + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-features-metrics-deployment + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-transports-http-hc5 + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-transports-http-hc5-deployment + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-ws-security + 1.5.1 + + + io.quarkiverse.cxf + quarkus-cxf-rt-ws-security-deployment + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-deployment - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-santuario + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-features-logging - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-santuario-deployment + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-features-logging-deployment - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-woodstox + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-features-metrics - 1.5.0 + io.quarkiverse.cxf + quarkus-cxf-woodstox-deployment + 1.5.1 - io.quarkiverse.cxf - quarkus-cxf-rt-features-metrics-deployment - 1.5.0 + com.fasterxml.woodstox + woodstox-core + 6.3.1 - io.quarkiverse.cxf - quarkus-cxf-rt-transports-http-hc5 - 1.5.0 + com.sun.xml.messaging.saaj + saaj-impl + 1.5.3 - io.quarkiverse.cxf - quarkus-cxf-rt-transports-http-hc5-deployment - 1.5.0 + org.apache.neethi + neethi + 3.2.0 - io.quarkiverse.cxf - quarkus-cxf-rt-ws-security - 1.5.0 + org.ehcache + ehcache + 3.10.1 + + + org.glassfish.jaxb + jaxb-runtime + + - io.quarkiverse.cxf - quarkus-cxf-rt-ws-security-deployment - 1.5.0 + org.jvnet.mimepull + mimepull + 1.9.14 + + + org.apache.santuario + xmlsec + 2.3.2 + + + jakarta.activation + jakarta.activation-api + + + jakarta.xml.bind + jakarta.xml.bind-api + + - io.quarkiverse.cxf - quarkus-cxf-santuario - 1.5.0 + io.quarkiverse.xmlsec + quarkus-xmlsec + 1.1.1 - io.quarkiverse.cxf - quarkus-cxf-santuario-deployment - 1.5.0 + io.quarkiverse.xmlsec + quarkus-xmlsec-deployment + 1.1.1 - io.quarkiverse.cxf - quarkus-cxf-woodstox - 1.5.0 + org.apache.cxf + cxf-rt-bindings-soap + 3.5.3 - io.quarkiverse.cxf - quarkus-cxf-woodstox-deployment - 1.5.0 + org.apache.cxf + cxf-rt-bindings-xml + 3.5.3 - org.jvnet.mimepull - mimepull - 1.9.14 + org.apache.cxf + cxf-rt-databinding-jaxb + 3.5.3 - org.apache.cxf - cxf-rt-bindings-xml - 3.5.3 + org.apache.cxf + cxf-rt-frontend-simple + 3.5.3 - org.apache.cxf - cxf-rt-databinding-jaxb - 3.5.3 + org.apache.cxf + cxf-rt-security-saml + 3.5.3 - org.apache.cxf - cxf-rt-frontend-simple - 3.5.3 + org.apache.cxf + cxf-rt-wsdl + 3.5.3 - org.apache.cxf - cxf-rt-security-saml - 3.5.3 + org.apache.cxf + cxf-rt-ws-addr + 3.5.3 - org.apache.cxf - cxf-rt-security - 3.5.3 + org.apache.cxf + cxf-rt-security + 3.5.3 org.codehaus.groovy