|
|
|
@ -4,23 +4,21 @@
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>com.example</groupId>
|
|
|
|
|
<artifactId>camel-springboot-activemq6-example</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
<version>3.0.1</version>
|
|
|
|
|
<name>camel-springboot-activemq6-example</name>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>3.3.9</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
|
<camel.version>4.8.4</camel.version>
|
|
|
|
|
<springboot.version>${project.parent.version}</springboot.version>
|
|
|
|
|
<spring-boot-dependencies.version>3.4.4</spring-boot-dependencies.version>
|
|
|
|
|
<spring-cloud-dependencies.version>2024.0.1</spring-cloud-dependencies.version>
|
|
|
|
|
<mybatis.version>3.5.19</mybatis.version>
|
|
|
|
|
<mybatis-spring.version>3.0.4</mybatis-spring.version>
|
|
|
|
|
<htmlunit.version>4.11.1</htmlunit.version>
|
|
|
|
|
<guava.version>33.1.0-jre</guava.version>
|
|
|
|
|
<maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
@ -35,7 +33,14 @@
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
|
<version>${spring-boot-dependencies.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
|
<version>${spring-cloud-dependencies.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
@ -60,6 +65,10 @@
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-ldap</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
@ -103,7 +112,6 @@
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.htmlunit</groupId>
|
|
|
|
|
<artifactId>htmlunit</artifactId>
|
|
|
|
|
<version>${htmlunit.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
@ -138,6 +146,7 @@
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
@ -146,6 +155,7 @@
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>${spring-boot-dependencies.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<mainClass>com.example.sbcamel.Boot</mainClass>
|
|
|
|
|
</configuration>
|
|
|
|
|