...
|
...
|
@@ -13,92 +13,20 @@ |
|
|
<artifactId>ufo-platform-product</artifactId>
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<name>A Camel Route</name>
|
|
|
<name>ufo-platform-product</name>
|
|
|
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
</properties>
|
|
|
|
|
|
<dependencyManagement>
|
|
|
<dependencies>
|
|
|
<!-- Camel BOM -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-parent</artifactId>
|
|
|
<version>2.22.1</version>
|
|
|
<scope>import</scope>
|
|
|
<type>pom</type>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-core</artifactId>
|
|
|
</dependency>
|
|
|
<dependencies>
|
|
|
|
|
|
<!-- logging -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
<scope>runtime</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
<scope>runtime</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
|
<scope>runtime</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- testing -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<version>3.7.0</version>
|
|
|
<configuration>
|
|
|
<source>1.8</source>
|
|
|
<target>1.8</target>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
<version>3.0.2</version>
|
|
|
<configuration>
|
|
|
<encoding>UTF-8</encoding>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
<!-- Allows the example to be run via 'mvn compile exec:java' -->
|
|
|
<plugin>
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
<version>1.6.0</version>
|
|
|
<configuration>
|
|
|
<mainClass>com.yoho.dsf.MainApp</mainClass>
|
|
|
<includePluginDependencies>false</includePluginDependencies>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
</project> |
...
|
...
|
|