|
17 | 17 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
18 | 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
19 | 19 | <parent>
|
20 |
| - <artifactId>spring-boot-starter-parent</artifactId> |
21 | 20 | <groupId>org.springframework.boot</groupId>
|
| 21 | + <artifactId>spring-boot-starter-parent</artifactId> |
22 | 22 | <version>2.1.18.RELEASE</version>
|
23 | 23 | </parent>
|
24 | 24 | <modelVersion>4.0.0</modelVersion>
|
|
30 | 30 | <plugin>
|
31 | 31 | <groupId>org.apache.maven.plugins</groupId>
|
32 | 32 | <artifactId>maven-compiler-plugin</artifactId>
|
33 |
| - <version>3.8.0</version> |
| 33 | + <version>3.10.1</version> |
34 | 34 | <configuration>
|
35 | 35 | <source>8</source>
|
36 | 36 | <target>8</target>
|
|
39 | 39 | <plugin>
|
40 | 40 | <groupId>org.apache.maven.plugins</groupId>
|
41 | 41 | <artifactId>maven-shade-plugin</artifactId>
|
42 |
| - <version>3.2.0</version> |
| 42 | + <version>3.4.0</version> |
43 | 43 | <executions>
|
44 | 44 | <execution>
|
45 | 45 | <phase>package</phase>
|
|
174 | 174 | <artifactId>commons-lang3</artifactId>
|
175 | 175 | <version>3.12.0</version>
|
176 | 176 | </dependency>
|
| 177 | + <dependency> |
| 178 | + <groupId>org.apache.commons</groupId> |
| 179 | + <artifactId>commons-compress</artifactId> |
| 180 | + <version>1.21</version> |
| 181 | + </dependency> |
177 | 182 | <dependency>
|
178 | 183 | <groupId>org.springframework.boot</groupId>
|
179 | 184 | <artifactId>spring-boot-starter-jetty</artifactId>
|
180 |
| - <version>2.7.4</version> |
| 185 | + <version>2.7.5</version> |
181 | 186 | </dependency>
|
182 | 187 | <dependency>
|
183 | 188 | <groupId>org.springframework.boot</groupId>
|
184 | 189 | <artifactId>spring-boot-starter-web</artifactId>
|
185 |
| - <version>2.7.4</version> |
| 190 | + <version>2.7.5</version> |
186 | 191 | <exclusions>
|
187 | 192 | <exclusion>
|
188 | 193 | <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
217 | 222 | <dependency>
|
218 | 223 | <groupId>org.springframework.boot</groupId>
|
219 | 224 | <artifactId>spring-boot-starter-test</artifactId>
|
220 |
| - <version>2.7.4</version> |
| 225 | + <version>2.7.5</version> |
221 | 226 | <scope>test</scope>
|
222 | 227 | </dependency>
|
223 | 228 | <dependency>
|
224 | 229 | <groupId>org.springframework.boot</groupId>
|
225 | 230 | <artifactId>spring-boot-starter-json</artifactId>
|
226 |
| - <version>2.7.4</version> |
| 231 | + <version>2.7.5</version> |
| 232 | + </dependency> |
| 233 | + <dependency> |
| 234 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 235 | + <artifactId>jackson-core</artifactId> |
| 236 | + <version>2.13.4</version> |
| 237 | + </dependency> |
| 238 | + <dependency> |
| 239 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 240 | + <artifactId>jackson-databind</artifactId> |
| 241 | + <version>2.13.4.2</version> |
| 242 | + </dependency> |
| 243 | + <dependency> |
| 244 | + <groupId>org.apache.maven.shared</groupId> |
| 245 | + <artifactId>maven-shared-utils</artifactId> |
| 246 | + <version>3.3.4</version> |
227 | 247 | </dependency>
|
228 | 248 | </dependencies>
|
229 | 249 | <properties>
|
|
0 commit comments