...
|
...
|
@@ -47,8 +47,20 @@ |
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- swagger -->
|
|
|
<dependency>
|
|
|
<groupId>com.mangofactory</groupId>
|
|
|
<artifactId>swagger-springmvc</artifactId>
|
|
|
<version>1.0.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- servlet -->
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
<version>3.0-alpha-1</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- spring核心包 -->
|
|
|
<dependency>
|
...
|
...
|
@@ -111,6 +123,13 @@ |
|
|
<artifactId>spring-test</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.amqp</groupId>
|
|
|
<artifactId>spring-rabbit</artifactId>
|
|
|
<version>1.5.1.RELEASE</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- mybatis核心包 -->
|
|
|
<dependency>
|
|
|
<groupId>org.mybatis</groupId>
|
...
|
...
|
@@ -229,6 +248,11 @@ |
|
|
<artifactId>commons-io</artifactId>
|
|
|
<version>2.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-codec</groupId>
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
<version>1.10</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
...
|
...
|
@@ -240,6 +264,14 @@ |
|
|
<artifactId>jackson-core</artifactId>
|
|
|
<version>2.6.3</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
<version>3.1.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
|
...
|
...
|
@@ -306,6 +338,14 @@ |
|
|
|
|
|
<pluginManagement>
|
|
|
<plugins>
|
|
|
|
|
|
<!-- jetty -->
|
|
|
<plugin>
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
<version>8.1.16.v20140903</version>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<!-- compiler插件, 设定JDK版本 -->
|
|
|
<plugin>
|
...
|
...
|
|