2016-02-04 03:40:46 -05:00
|
|
|
<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>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>spring-apache-camel</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>spring-apache-camel</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<env.camel.version>2.16.1</env.camel.version>
|
|
|
|
<env.spring.version>4.2.4.RELEASE</env.spring.version>
|
2016-11-16 09:30:30 -05:00
|
|
|
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
2016-02-15 04:59:13 -05:00
|
|
|
<java.version>1.7</java.version>
|
2016-11-14 13:43:29 -05:00
|
|
|
<junit.version>4.12</junit.version>
|
2016-02-04 03:40:46 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2016-11-14 13:52:48 -05:00
|
|
|
|
2016-02-15 04:59:13 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-14 13:52:48 -05:00
|
|
|
|
2016-02-04 03:40:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-core</artifactId>
|
|
|
|
<version>${env.camel.version}</version>
|
|
|
|
</dependency>
|
2016-11-14 13:52:48 -05:00
|
|
|
|
2016-02-04 03:40:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-spring</artifactId>
|
|
|
|
<version>${env.camel.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-stream</artifactId>
|
|
|
|
<version>${env.camel.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${env.spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
2016-11-14 13:52:48 -05:00
|
|
|
|
2016-02-15 04:59:13 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<verbose>true</verbose>
|
|
|
|
<fork>true</fork>
|
|
|
|
<compilerVersion>${java.version}</compilerVersion>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-11-14 13:52:48 -05:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<!-- <provPersistenceTarget>h2</provPersistenceTarget> -->
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-02-15 04:59:13 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-11-16 09:30:30 -05:00
|
|
|
|
|
|
|
|
2016-02-04 03:40:46 -05:00
|
|
|
</project>
|