|
@ -1,5 +1,5 @@
|
|
|
<?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"
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
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>
|
|
|
|
|
@ -17,16 +17,6 @@
|
|
|
<description>ESB服务运行模块</description>
|
|
|
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.hos</groupId>
|
|
|
<artifactId>hos-web-framework</artifactId>
|
|
|
<version>1.3.0</version>
|
|
|
</dependency>
|
|
|
<!-- spring-boot -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
@ -36,6 +26,12 @@
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
<artifactId>asm</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
@ -44,31 +40,42 @@
|
|
|
<!--<scope>provided</scope>-->
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.hos</groupId>
|
|
|
<artifactId>hos-web-framework</artifactId>
|
|
|
<version>${hos-version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.springframework.cloud</groupId>-->
|
|
|
<!--<artifactId>spring-cloud-starter-eureka</artifactId>-->
|
|
|
<!--<groupId>org.springframework.cloud</groupId>-->
|
|
|
<!--<artifactId>spring-cloud-starter-eureka</artifactId>-->
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
<!-- sigar -->
|
|
|
<dependency>
|
|
|
<groupId>org.fusesource</groupId>
|
|
|
<artifactId>sigar</artifactId>
|
|
|
<version>1.6.4</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
<version>5.7.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
<artifactId>jsch</artifactId>
|
|
|
<version>0.1.53</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- camel -->
|
|
@ -100,10 +107,6 @@
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-quartz</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-quartz2</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-xmljson</artifactId>
|
|
@ -115,7 +118,6 @@
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
<artifactId>camel-jetty</artifactId>
|
|
|
<version>${camel-version}</version> <!-- use the same version as your Camel core version -->
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.camel</groupId>
|
|
@ -128,10 +130,4 @@
|
|
|
<!-- camel end -->
|
|
|
</dependencies>
|
|
|
|
|
|
<dependencyManagement>
|
|
|
<dependencies>
|
|
|
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
|
|
|
</project>
|