|
@@ -12,22 +12,9 @@
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
- <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
|
|
- <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
|
|
|
- <spring-boot.version>1.5.15.RELEASE</spring-boot.version>
|
|
|
- <spring-cloud.version>Edgware.SR3</spring-cloud.version>
|
|
|
- <junit.version>4.12</junit.version>
|
|
|
- <redis.clients.version>2.9.0</redis.clients.version>
|
|
|
- <commons-lang3.version>3.5</commons-lang3.version>
|
|
|
- <gson.version>2.8.0</gson.version>
|
|
|
- <fastjson.version>1.2.24</fastjson.version>
|
|
|
- <kryo.version>4.0.0</kryo.version>
|
|
|
- <poi.version>3.17</poi.version>
|
|
|
- <reflectasm.version>1.11.3</reflectasm.version>
|
|
|
- <spring.data.redis.version>1.8.4.RELEASE</spring.data.redis.version>
|
|
|
- <slf4j.version>1.7.25</slf4j.version>
|
|
|
- <logback.version>1.2.3</logback.version>
|
|
|
- <spring.version>4.3.9.RELEASE</spring.version>
|
|
|
+ <spring-boot.version>2.1.4.RELEASE</spring-boot.version>
|
|
|
+ <spring-cloud.version>Greenwich.RELEASE</spring-cloud.version>
|
|
|
+ <druid.version>1.1.14</druid.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencyManagement>
|
|
@@ -66,21 +53,6 @@
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
<version>1.5.20</version>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>ch.qos.logback</groupId>
|
|
|
- <artifactId>logback-access</artifactId>
|
|
|
- <version>${logback.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>ch.qos.logback</groupId>
|
|
|
- <artifactId>logback-classic</artifactId>
|
|
|
- <version>${logback.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>ch.qos.logback</groupId>
|
|
|
- <artifactId>logback-core</artifactId>
|
|
|
- <version>${logback.version}</version>
|
|
|
- </dependency>
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
|
|
@@ -93,7 +65,6 @@
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
- <version>${maven-surefire-plugin.version}</version>
|
|
|
<configuration>
|
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
|
<skipTests>true</skipTests>
|
|
@@ -102,7 +73,6 @@
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <version>${maven-compiler-plugin.version}</version>
|
|
|
<configuration>
|
|
|
<source>${java.version}</source>
|
|
|
<target>${java.version}</target>
|
|
@@ -112,12 +82,14 @@
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <attach>true</attach>
|
|
|
+ </configuration>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
- <id>attach-sources</id>
|
|
|
- <phase>verify</phase>
|
|
|
+ <phase>compile</phase>
|
|
|
<goals>
|
|
|
- <goal>jar-no-fork</goal>
|
|
|
+ <goal>jar</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|