|
@@ -6,12 +6,13 @@
|
|
|
|
|
|
<groupId>com.echepei</groupId>
|
|
|
<artifactId>common-utils</artifactId>
|
|
|
- <version>1.1</version>
|
|
|
+ <version>1.3</version>
|
|
|
|
|
|
<properties>
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <boot.version>2.7.17</boot.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
@@ -77,7 +78,27 @@
|
|
|
<dependency>
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
- <version>1.5.18</version>
|
|
|
+ <version>1.2.11</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ <version>${boot.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>com.jayway.jsonpath</groupId>
|
|
|
+ <artifactId>json-path</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>4.13.2</version>
|
|
|
+ <scope>provided</scope>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
@@ -91,9 +112,6 @@
|
|
|
<execution>
|
|
|
<phase>package</phase>
|
|
|
<goals><goal>shade</goal></goals>
|
|
|
- <configuration>
|
|
|
- <createDependencyReducedPom>true</createDependencyReducedPom>
|
|
|
- </configuration>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|