|
50 | 50 | <parent> |
51 | 51 | <groupId>org.springframework.boot</groupId> |
52 | 52 | <artifactId>spring-boot-starter-parent</artifactId> |
53 | | - <version>3.5.7</version> |
| 53 | + <version>4.0.0</version> |
54 | 54 | </parent> |
55 | 55 |
|
56 | 56 | <properties> |
57 | 57 | <java.version>25</java.version> |
58 | 58 | <maven.compiler.source>${java.version}</maven.compiler.source> |
59 | 59 | <maven.compiler.target>${java.version}</maven.compiler.target> |
60 | 60 |
|
61 | | - <switcher-client.version>2.5.1</switcher-client.version> |
| 61 | + <switcher-client.version>2.5.2</switcher-client.version> |
62 | 62 | <jsonwebtoken.version>0.13.0</jsonwebtoken.version> |
63 | 63 | <joda-time.version>2.14.0</joda-time.version> |
64 | 64 | <gson.version>2.13.2</gson.version> |
65 | 65 | <springdoc.version>2.8.13</springdoc.version> |
66 | 66 |
|
67 | 67 | <!-- Test--> |
68 | | - <flapdoodle.embed.mongo.version>4.21.0</flapdoodle.embed.mongo.version> |
69 | | - <okhttp.version>5.2.1</okhttp.version> |
| 68 | + <flapdoodle.embed.mongo.version>4.22.0</flapdoodle.embed.mongo.version> |
| 69 | + <okhttp.version>5.3.2</okhttp.version> |
70 | 70 |
|
71 | 71 | <!-- Plugins --> |
72 | 72 | <native-image-plugin.version>0.11.2</native-image-plugin.version> |
|
254 | 254 | <!-- Test --> |
255 | 255 | <dependency> |
256 | 256 | <groupId>org.springframework.boot</groupId> |
257 | | - <artifactId>spring-boot-starter-test</artifactId> |
| 257 | + <artifactId>spring-boot-webmvc-test</artifactId> |
258 | 258 | <scope>test</scope> |
259 | 259 | </dependency> |
260 | 260 |
|
261 | 261 | <dependency> |
262 | | - <groupId>org.springframework.security</groupId> |
263 | | - <artifactId>spring-security-test</artifactId> |
| 262 | + <groupId>org.springframework.boot</groupId> |
| 263 | + <artifactId>spring-boot-starter-data-mongodb-test</artifactId> |
| 264 | + <scope>test</scope> |
| 265 | + </dependency> |
| 266 | + |
| 267 | + <dependency> |
| 268 | + <groupId>org.springframework.boot</groupId> |
| 269 | + <artifactId>spring-boot-starter-security-test</artifactId> |
| 270 | + <scope>test</scope> |
| 271 | + </dependency> |
| 272 | + |
| 273 | + <dependency> |
| 274 | + <groupId>org.springframework.boot</groupId> |
| 275 | + <artifactId>spring-boot-starter-actuator-test</artifactId> |
| 276 | + <scope>test</scope> |
| 277 | + </dependency> |
| 278 | + |
| 279 | + <dependency> |
| 280 | + <groupId>org.springframework.boot</groupId> |
| 281 | + <artifactId>spring-boot-starter-cache-test</artifactId> |
264 | 282 | <scope>test</scope> |
265 | 283 | </dependency> |
266 | 284 |
|
|
280 | 298 |
|
281 | 299 | <dependency> |
282 | 300 | <groupId>de.flapdoodle.embed</groupId> |
283 | | - <artifactId>de.flapdoodle.embed.mongo.spring3x</artifactId> |
| 301 | + <artifactId>de.flapdoodle.embed.mongo.spring4x</artifactId> |
284 | 302 | <version>${flapdoodle.embed.mongo.version}</version> |
285 | 303 | <scope>test</scope> |
286 | 304 | </dependency> |
287 | 305 | </dependencies> |
288 | 306 |
|
289 | | - <dependencyManagement> |
290 | | - <dependencies> |
291 | | - <!-- Patches Uncontrolled Recursion [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHECOMMONS-10734078]--> |
292 | | - <dependency> |
293 | | - <groupId>org.apache.commons</groupId> |
294 | | - <artifactId>commons-lang3</artifactId> |
295 | | - <version>3.18.0</version> |
296 | | - </dependency> |
297 | | - </dependencies> |
298 | | - </dependencyManagement> |
299 | | - |
300 | 307 | <build> |
301 | 308 | <pluginManagement> |
302 | 309 | <plugins> |
|
0 commit comments