|
48 | 48 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
49 | 49 | <maven.compiler.source>1.8</maven.compiler.source> |
50 | 50 | <maven.compiler.target>1.8</maven.compiler.target> |
| 51 | + <slf4j.version>2.0.12</slf4j.version> |
| 52 | + <jackson.version>2.16.1</jackson.version> |
51 | 53 | </properties> |
52 | 54 |
|
53 | 55 | <distributionManagement> |
|
66 | 68 | <plugin> |
67 | 69 | <groupId>org.apache.maven.plugins</groupId> |
68 | 70 | <artifactId>maven-source-plugin</artifactId> |
69 | | - <version>2.2.1</version> |
| 71 | + <version>3.3.0</version> |
70 | 72 | <executions> |
71 | 73 | <execution> |
72 | 74 | <id>attach-sources</id> |
|
232 | 234 | <dependency> |
233 | 235 | <groupId>com.fasterxml.jackson.core</groupId> |
234 | 236 | <artifactId>jackson-core</artifactId> |
235 | | - <version>2.14.2</version> |
| 237 | + <version>${jackson.version}</version> |
236 | 238 | </dependency> |
237 | 239 | <dependency> |
238 | 240 | <groupId>com.fasterxml.jackson.core</groupId> |
239 | 241 | <artifactId>jackson-databind</artifactId> |
240 | | - <version>2.14.2</version> |
| 242 | + <version>${jackson.version}</version> |
241 | 243 | </dependency> |
242 | 244 | <dependency> |
243 | 245 | <groupId>com.fasterxml.jackson.datatype</groupId> |
|
247 | 249 | <dependency> |
248 | 250 | <groupId>org.slf4j</groupId> |
249 | 251 | <artifactId>slf4j-api</artifactId> |
250 | | - <version>2.0.6</version> |
| 252 | + <version>${slf4j.version}</version> |
251 | 253 | </dependency> |
252 | 254 | <dependency> |
253 | 255 | <groupId>org.slf4j</groupId> |
254 | 256 | <artifactId>slf4j-simple</artifactId> |
255 | | - <version>2.0.6</version> |
| 257 | + <version>${slf4j.version}</version> |
256 | 258 | </dependency> |
257 | 259 | <dependency> |
258 | 260 | <groupId>org.junit.jupiter</groupId> |
|
0 commit comments