|
53 | 53 | <parent>
|
54 | 54 | <groupId>org.springframework.boot</groupId>
|
55 | 55 | <artifactId>spring-boot-starter-parent</artifactId>
|
56 |
| - <version>3.2.5</version> |
| 56 | + <version>3.3.0</version> |
57 | 57 | <relativePath/>
|
58 | 58 | <!-- lookup parent from repository -->
|
59 | 59 | </parent>
|
|
67 | 67 |
|
68 | 68 | <properties>
|
69 | 69 | <java.version>21</java.version>
|
70 |
| - <commons-lang3.version>3.14.0</commons-lang3.version> |
71 |
| - <jackson-bom.version>2.17.0</jackson-bom.version> |
72 |
| - <logback.version>1.4.14</logback.version> |
73 |
| - <mockito.version>5.11.0</mockito.version> |
74 |
| - <snakeyaml.version>2.2</snakeyaml.version> |
75 | 70 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
76 | 71 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
77 | 72 | <maven.compiler.source>${java.version}</maven.compiler.source>
|
78 | 73 | <maven.compiler.target>${java.version}</maven.compiler.target>
|
79 |
| - <lombok.version>1.18.32</lombok.version> |
80 | 74 | </properties>
|
81 | 75 |
|
82 | 76 | <dependencies>
|
|
144 | 138 | <dependency>
|
145 | 139 | <groupId>com.github.ben-manes.caffeine</groupId>
|
146 | 140 | <artifactId>caffeine</artifactId>
|
147 |
| - <version>3.1.8</version> |
148 | 141 | </dependency>
|
149 | 142 | <dependency>
|
150 | 143 | <groupId>io.projectreactor</groupId>
|
|
154 | 147 | <dependency>
|
155 | 148 | <groupId>org.assertj</groupId>
|
156 | 149 | <artifactId>assertj-core</artifactId>
|
157 |
| - <version>3.25.3</version> |
158 | 150 | <scope>test</scope>
|
159 | 151 | </dependency>
|
160 | 152 | <dependency>
|
|
249 | 241 | <plugin>
|
250 | 242 | <groupId>org.cyclonedx</groupId>
|
251 | 243 | <artifactId>cyclonedx-maven-plugin</artifactId>
|
252 |
| - <version>2.8.0</version> |
253 |
| - <executions> |
254 |
| - <execution> |
255 |
| - <phase>validate</phase> |
256 |
| - <goals> |
257 |
| - <goal>makeAggregateBom</goal> |
258 |
| - </goals> |
259 |
| - </execution> |
260 |
| - </executions> |
261 |
| - <configuration> |
262 |
| - <outputFormat>json</outputFormat> |
263 |
| - <outputName>classes/bom</outputName> |
264 |
| - </configuration> |
265 | 244 | </plugin>
|
266 | 245 | <plugin>
|
267 | 246 | <groupId>org.projectlombok</groupId>
|
|
311 | 290 | <plugin>
|
312 | 291 | <groupId>org.apache.maven.plugins</groupId>
|
313 | 292 | <artifactId>maven-antrun-plugin</artifactId>
|
314 |
| - <version>3.1.0</version> |
315 | 293 | <executions>
|
316 | 294 | <execution>
|
317 | 295 | <id>generate-delomboked-sources-jar</id>
|
|
342 | 320 | <plugin>
|
343 | 321 | <groupId>org.codehaus.mojo</groupId>
|
344 | 322 | <artifactId>build-helper-maven-plugin</artifactId>
|
345 |
| - <version>3.6.0</version> |
346 | 323 | <executions>
|
347 | 324 | <execution>
|
348 | 325 | <id>attach-delomboked-sources-jar</id>
|
|
391 | 368 | <plugin>
|
392 | 369 | <groupId>io.github.git-commit-id</groupId>
|
393 | 370 | <artifactId>git-commit-id-maven-plugin</artifactId>
|
394 |
| - <version>8.0.2</version> |
395 | 371 | <executions>
|
396 | 372 | <execution>
|
397 | 373 | <id>get-the-git-infos</id>
|
|
412 | 388 | <plugin>
|
413 | 389 | <groupId>org.apache.maven.plugins</groupId>
|
414 | 390 | <artifactId>maven-compiler-plugin</artifactId>
|
415 |
| - <version>3.13.0</version> |
416 | 391 | </plugin>
|
417 | 392 | <plugin>
|
418 | 393 | <groupId>org.codehaus.mojo</groupId>
|
419 | 394 | <artifactId>versions-maven-plugin</artifactId>
|
420 |
| - <version>2.16.2</version> |
421 | 395 | <configuration>
|
422 | 396 | <generateBackupPoms>false</generateBackupPoms>
|
423 | 397 | </configuration>
|
|
530 | 504 | <plugin>
|
531 | 505 | <groupId>org.apache.maven.plugins</groupId>
|
532 | 506 | <artifactId>maven-surefire-plugin</artifactId>
|
533 |
| - <version>3.2.5</version> |
534 | 507 | <configuration>
|
535 | 508 | <argLine>${surefire.jacoco.args}</argLine>
|
536 | 509 | </configuration>
|
537 | 510 | </plugin>
|
538 | 511 | <plugin>
|
539 | 512 | <groupId>org.apache.maven.plugins</groupId>
|
540 | 513 | <artifactId>maven-failsafe-plugin</artifactId>
|
541 |
| - <version>3.2.5</version> |
542 | 514 | <configuration>
|
543 | 515 | <argLine>${failsafe.jacoco.args}</argLine>
|
544 | 516 | </configuration>
|
|
554 | 526 | <plugin>
|
555 | 527 | <groupId>org.springframework.boot</groupId>
|
556 | 528 | <artifactId>spring-boot-maven-plugin</artifactId>
|
557 |
| - <version>3.2.5</version> |
558 | 529 | <configuration>
|
559 | 530 | <image>
|
560 | 531 | <builder>paketobuildpacks/builder-jammy-tiny</builder>
|
|
695 | 666 | <dependency>
|
696 | 667 | <groupId>org.cftoolsuite.actuator</groupId>
|
697 | 668 | <artifactId>spring-boot-starter-runtime-metadata</artifactId>
|
698 |
| - <version>0.3.0</version> |
| 669 | + <version>0.4.0</version> |
699 | 670 | </dependency>
|
700 | 671 | </dependencies>
|
701 | 672 | </profile>
|
|
722 | 693 | <plugin>
|
723 | 694 | <groupId>org.codehaus.mojo</groupId>
|
724 | 695 | <artifactId>versions-maven-plugin</artifactId>
|
725 |
| - <version>2.16.2</version> |
726 | 696 | <reportSets>
|
727 | 697 | <reportSet>
|
728 | 698 | <reports>
|
|
0 commit comments