This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-examples.git
commit 7b2a94de3a155652f82dd9dcbf9e966a59c33386 Author: Claus Ibsen <[email protected]> AuthorDate: Thu Jun 30 08:05:27 2022 +0200 CAMEL-9627: camel-cxf splitup --- examples/cxf-proxy/pom.xml | 22 ++++++++++++++-------- .../resources/META-INF/spring/camel-config.xml | 4 ++-- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/examples/cxf-proxy/pom.xml b/examples/cxf-proxy/pom.xml index b9c7d867..4cd44fa2 100644 --- a/examples/cxf-proxy/pom.xml +++ b/examples/cxf-proxy/pom.xml @@ -17,7 +17,8 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -55,25 +56,30 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-core</artifactId> </dependency> - <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-spring-xml</artifactId> </dependency> - <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http</artifactId> + <artifactId>camel-spring-main</artifactId> </dependency> - <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-cxf</artifactId> + <artifactId>camel-cxf-spring-soap</artifactId> </dependency> - <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-spring-main</artifactId> + <artifactId>camel-cxf-spring-transport</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-http</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + <version>${spring-version}</version> </dependency> <!-- cxf --> diff --git a/examples/cxf-proxy/src/main/resources/META-INF/spring/camel-config.xml b/examples/cxf-proxy/src/main/resources/META-INF/spring/camel-config.xml index 6a9d6183..bc01720c 100644 --- a/examples/cxf-proxy/src/main/resources/META-INF/spring/camel-config.xml +++ b/examples/cxf-proxy/src/main/resources/META-INF/spring/camel-config.xml @@ -21,13 +21,13 @@ <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camel="http://camel.apache.org/schema/spring" - xmlns:cxf="http://camel.apache.org/schema/cxf" + xmlns:cxf="http://camel.apache.org/schema/cxf/jaxws" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd - http://camel.apache.org/schema/cxf http://camel.apache.org/schema/cxf/camel-cxf.xsd"> + http://camel.apache.org/schema/cxf/jaxws http://camel.apache.org/schema/cxf/jaxws/camel-cxf.xsd"> <!-- spring property placeholder, ignore resource not found as the file resource is for unit testing --> <context:property-placeholder location="classpath:incident.properties,file:target/custom.properties"
