...
|
...
|
@@ -22,6 +22,7 @@ |
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
<spring-cloud.version>Greenwich.M1</spring-cloud.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
...
|
...
|
@@ -34,6 +35,10 @@ |
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
<version>1.3.2</version>
|
...
|
...
|
@@ -68,18 +73,6 @@ |
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
<artifactId>xstream</artifactId>
|
|
|
<version>1.4.7</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>net.sf.sociaal</groupId>
|
|
|
<artifactId>xmlpull-xpp3</artifactId>
|
|
|
<version>3.0.0.20130526</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
<version>1.2.3</version>
|
...
|
...
|
@@ -96,9 +89,18 @@ |
|
|
<artifactId>log4j</artifactId>
|
|
|
<version>1.2.17</version>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
<dependencyManagement>
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
<version>${spring-cloud.version}</version>
|
|
|
<type>pom</type>
|
|
|
<scope>import</scope>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
...
|
...
|
@@ -118,6 +120,16 @@ |
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
<repositories>
|
|
|
<repository>
|
|
|
<id>spring-milestones</id>
|
|
|
<name>Spring Milestones</name>
|
|
|
<url>https://repo.spring.io/milestone</url>
|
|
|
<snapshots>
|
|
|
<enabled>false</enabled>
|
|
|
</snapshots>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
</project> |
...
|
...
|
|