|
|
|
@ -3,13 +3,13 @@
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>com.example</groupId>
|
|
|
|
|
<artifactId>camel-springboot-xml-example</artifactId>
|
|
|
|
|
<version>0.0.2</version>
|
|
|
|
|
<name>camel-springboot-xml-example</name>
|
|
|
|
|
<artifactId>camel-springboot-activemq6-example</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<name>camel-springboot-activemq6-example</name>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>3.3.2</version>
|
|
|
|
|
<version>3.3.7</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
@ -21,60 +21,67 @@
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-spring-boot-bom</artifactId>
|
|
|
|
|
<version>${camel.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-spring-boot-bom</artifactId>
|
|
|
|
|
<version>${camel.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- Spring Boot -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Camel -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-log-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-bean-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-bean-validator-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-cxf-rest-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- jax-rs json provider from jackson -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
|
|
|
|
<artifactId>jackson-jakarta-rs-json-provider</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Camel -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-log-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-bean-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-bean-validator-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-cxf-rest-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-activemq6-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.camel.springboot</groupId>
|
|
|
|
|
<artifactId>camel-jackson-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- jax-rs json provider from jackson -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
|
|
|
|
<artifactId>jackson-jakarta-rs-json-provider</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- CXF WADL definition-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-rs-service-description</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- CXF WADL definition-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-rs-service-description</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|