|
@ -0,0 +1,144 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<artifactId>hos-web-camel-dependencies</artifactId>
|
|
|
<version>1.1.1-SNAPSHOT</version>
|
|
|
<packaging>pom</packaging>
|
|
|
<parent>
|
|
|
<groupId>com.yihu.hos</groupId>
|
|
|
<artifactId>hos-web-framework-dependencies</artifactId>
|
|
|
<version>1.1.1-SNAPSHOT</version>
|
|
|
<relativePath>../hos-web-framework-dependencies</relativePath><!-- lookup parent from repository -->
|
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
|
<camel.version>2.17.1</camel.version>
|
|
|
<camel.osgi.export.pkg>org.apache.camel.dataformat.xmljson.*</camel.osgi.export.pkg>
|
|
|
<camel.osgi.export.service>org.apache.camel.spi.DataFormatResolver;dataformat=xmljson</camel.osgi.export.service>
|
|
|
</properties>
|
|
|
<pluginRepositories>
|
|
|
<pluginRepository>
|
|
|
<id>pluginCentral</id>
|
|
|
<name>pluginCentral</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
|
|
|
</pluginRepository>
|
|
|
<pluginRepository>
|
|
|
<id>pluginReleases</id>
|
|
|
<name>pluginReleases</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
|
|
|
</pluginRepository>
|
|
|
</pluginRepositories>
|
|
|
<!--用于发布到服务器 对应setting的对应server表情里面的id -->
|
|
|
<distributionManagement>
|
|
|
<repository>
|
|
|
<id>Releases</id>
|
|
|
<name>Releases</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
|
|
|
</repository>
|
|
|
<snapshotRepository>
|
|
|
<id>snapshots</id>
|
|
|
<name>Snapshots</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
|
|
|
</snapshotRepository>
|
|
|
</distributionManagement>
|
|
|
<repositories>
|
|
|
<repository>
|
|
|
<id>repositoryCentral</id>
|
|
|
<name>repositoryCentral</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
|
|
|
</repository>
|
|
|
<repository>
|
|
|
<id>repositoryReleases</id>
|
|
|
<name>repositoryReleases</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
<!--<exclusions>-->
|
|
|
<!--<exclusion>-->
|
|
|
<!--<groupId>org.slf4j</groupId>-->
|
|
|
<!--<artifactId>jcl-over-slf4j</artifactId>-->
|
|
|
<!--</exclusion>-->
|
|
|
<!--</exclusions>-->
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
|
<version>3.2.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- camel start -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-core</artifactId>
|
|
|
<version>${camel.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-spring-boot</artifactId>
|
|
|
<version>${camel.version}</version> <!-- use the same version as your Camel core version -->
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-http4</artifactId>
|
|
|
<version>${camel.version}</version> <!-- use the same version as your Camel core version -->
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-jms</artifactId>
|
|
|
<version>${camel.version}</version> <!-- use the same version as your Camel core version -->
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-cxf</artifactId>
|
|
|
<version>${camel.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-quartz</artifactId>
|
|
|
<version>${camel.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-quartz2</artifactId>
|
|
|
<version>${camel.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-xmljson</artifactId>
|
|
|
<version>${camel.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-stream</artifactId>
|
|
|
<version>${camel.version}</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-camel -->
|
|
|
<dependency>
|
|
|
<groupId>xom</groupId>
|
|
|
<artifactId>xom</artifactId>
|
|
|
<version>1.2.5</version>
|
|
|
</dependency>
|
|
|
<!-- camel end -->
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<source>1.8</source>
|
|
|
<target>1.8</target>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
</project>
|