This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
The following commit(s) were added to refs/heads/main by this push: new 6b083b383 Ref #559: add missing cxf jars 6b083b383 is described below commit 6b083b3834a32ab3431276ed3efff7da56170373 Author: Francois de Parscau <francois.depars...@qlik.com> AuthorDate: Thu Dec 12 14:17:20 2024 +0100 Ref #559: add missing cxf jars --- components/camel-cxf/camel-cxf-all/pom.xml | 60 ++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/components/camel-cxf/camel-cxf-all/pom.xml b/components/camel-cxf/camel-cxf-all/pom.xml index 5c4df5840..fa78b61b4 100644 --- a/components/camel-cxf/camel-cxf-all/pom.xml +++ b/components/camel-cxf/camel-cxf-all/pom.xml @@ -271,6 +271,61 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-management</artifactId> + <version>${cxf-version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.cxf</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-rs-extension-providers</artifactId> + <version>${cxf-version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.cxf</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-rs-extension-search</artifactId> + <version>${cxf-version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.cxf</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-rs-json-basic</artifactId> + <version>${cxf-version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.cxf</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-rs-service-description</artifactId> + <version>${cxf-version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.cxf</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-soap</artifactId> @@ -338,6 +393,11 @@ <include>org.apache.cxf:cxf-rt-transports-http</include> <include>org.apache.cxf:cxf-rt-cxf-rt-security</include> <include>org.apache.cxf:cxf-rt-cxf-rt-rs-client</include> + <include>org.apache.cxf:cxf-rt-management</include> + <include>org.apache.cxf:cxf-rt-rs-extension-providers</include> + <include>org.apache.cxf:cxf-rt-rs-extension-search</include> + <include>org.apache.cxf:cxf-rt-rs-json-basic</include> + <include>org.apache.cxf:cxf-rt-rs-service-description</include> <include>org.apache.cxf:cxf-rt-ws-addr</include> <include>org.apache.cxf:cxf-rt-ws-policy</include> <include>org.apache.cxf:cxf-rt-wsdl</include>