|
@ -9,12 +9,6 @@
|
|
|
<packaging>pom</packaging>
|
|
|
<version>1.3.0</version>
|
|
|
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
<version>1.4.5.RELEASE</version>
|
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
|
<hos-version>1.3.0</hos-version>
|
|
|
<spring-boot-version>1.4.5.RELEASE</spring-boot-version>
|
|
@ -120,16 +114,140 @@
|
|
|
</repositories>
|
|
|
|
|
|
<build>
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
|
|
<pluginManagement>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
<version>2.4</version>
|
|
|
<configuration>
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<version>3.3</version>
|
|
|
<configuration>
|
|
|
<source>1.8</source>
|
|
|
<target>1.8</target>
|
|
|
<maxmem>512M</maxmem>
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
<version>2.4.3</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
<version>2.4.1</version>
|
|
|
<configuration>
|
|
|
<filesets>
|
|
|
<fileset>
|
|
|
<directory>activemq-data</directory>
|
|
|
</fileset>
|
|
|
</filesets>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
<version>2.5.2</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
<version>1.5</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
<version>2.6</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
<version>2.10</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
<version>2.18.1</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
<version>2.15</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
<version>1.4.0</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-maven-plugin</artifactId>
|
|
|
<version>${camel-version}</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-package-maven-plugin</artifactId>
|
|
|
<version>${camel-version}</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>io.hawt</groupId>
|
|
|
<artifactId>hawtio-maven-plugin</artifactId>
|
|
|
<version>${hawtio-version}</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
<version>${bundle-plugin-version}</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-api-component-maven-plugin</artifactId>
|
|
|
<version>${camel-version}</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
<version>1.10</version>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</pluginManagement>
|
|
|
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<childDelegation>false</childDelegation>
|
|
|
<useFile>true</useFile>
|
|
|
<failIfNoTests>false</failIfNoTests>
|
|
|
<includes>
|
|
|
<include>**/*Test.java</include>
|
|
|
</includes>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
<dependencyManagement>
|
|
|
<dependencies>
|
|
|
<!-- import Spring Boot before Camel -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
<version>${spring-boot-version}</version>
|
|
|
<type>pom</type>
|
|
|
<scope>import</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|