|
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 | 74 | <vaadin.version>24.3.12</vaadin.version> |
80 | | - <lombok.version>1.18.32</lombok.version> |
81 | 75 | </properties> |
82 | 76 |
|
83 | 77 | <dependencies> |
|
163 | 157 | <dependency> |
164 | 158 | <groupId>com.github.ben-manes.caffeine</groupId> |
165 | 159 | <artifactId>caffeine</artifactId> |
166 | | - <version>3.1.8</version> |
167 | 160 | </dependency> |
168 | 161 |
|
169 | 162 | <dependency> |
170 | 163 | <groupId>com.vaadin</groupId> |
171 | 164 | <artifactId>vaadin-spring-boot-starter</artifactId> |
172 | 165 | <version>${vaadin.version}</version> |
173 | 166 | </dependency> |
174 | | - <dependency> |
175 | | - <groupId>org.vaadin.artur</groupId> |
176 | | - <artifactId>a-vaadin-helper</artifactId> |
177 | | - <version>1.9.0</version> |
178 | | - </dependency> |
179 | 167 | <dependency> |
180 | 168 | <groupId>com.github.appreciated</groupId> |
181 | 169 | <artifactId>apexcharts</artifactId> |
|
190 | 178 | <dependency> |
191 | 179 | <groupId>org.assertj</groupId> |
192 | 180 | <artifactId>assertj-core</artifactId> |
193 | | - <version>3.25.3</version> |
194 | 181 | <scope>test</scope> |
195 | 182 | </dependency> |
196 | 183 | <dependency> |
|
299 | 286 | <plugin> |
300 | 287 | <groupId>org.cyclonedx</groupId> |
301 | 288 | <artifactId>cyclonedx-maven-plugin</artifactId> |
302 | | - <version>2.8.0</version> |
303 | | - <executions> |
304 | | - <execution> |
305 | | - <phase>validate</phase> |
306 | | - <goals> |
307 | | - <goal>makeAggregateBom</goal> |
308 | | - </goals> |
309 | | - </execution> |
310 | | - </executions> |
311 | | - <configuration> |
312 | | - <outputFormat>json</outputFormat> |
313 | | - <outputName>classes/bom</outputName> |
314 | | - </configuration> |
315 | 289 | </plugin> |
316 | 290 | <plugin> |
317 | 291 | <groupId>org.projectlombok</groupId> |
|
361 | 335 | <plugin> |
362 | 336 | <groupId>org.apache.maven.plugins</groupId> |
363 | 337 | <artifactId>maven-antrun-plugin</artifactId> |
364 | | - <version>3.1.0</version> |
365 | 338 | <executions> |
366 | 339 | <execution> |
367 | 340 | <id>generate-delomboked-sources-jar</id> |
|
392 | 365 | <plugin> |
393 | 366 | <groupId>org.codehaus.mojo</groupId> |
394 | 367 | <artifactId>build-helper-maven-plugin</artifactId> |
395 | | - <version>3.6.0</version> |
396 | 368 | <executions> |
397 | 369 | <execution> |
398 | 370 | <id>attach-delomboked-sources-jar</id> |
|
441 | 413 | <plugin> |
442 | 414 | <groupId>io.github.git-commit-id</groupId> |
443 | 415 | <artifactId>git-commit-id-maven-plugin</artifactId> |
444 | | - <version>8.0.2</version> |
445 | 416 | <executions> |
446 | 417 | <execution> |
447 | 418 | <id>get-the-git-infos</id> |
|
462 | 433 | <plugin> |
463 | 434 | <groupId>org.apache.maven.plugins</groupId> |
464 | 435 | <artifactId>maven-compiler-plugin</artifactId> |
465 | | - <version>3.13.0</version> |
466 | 436 | </plugin> |
467 | 437 | <plugin> |
468 | 438 | <groupId>org.codehaus.mojo</groupId> |
469 | 439 | <artifactId>versions-maven-plugin</artifactId> |
470 | | - <version>2.16.2</version> |
471 | 440 | <configuration> |
472 | 441 | <generateBackupPoms>false</generateBackupPoms> |
473 | 442 | </configuration> |
|
554 | 523 | <plugin> |
555 | 524 | <groupId>org.apache.maven.plugins</groupId> |
556 | 525 | <artifactId>maven-surefire-plugin</artifactId> |
557 | | - <version>3.2.5</version> |
558 | 526 | <configuration> |
559 | 527 | <argLine>${surefire.jacoco.args}</argLine> |
560 | 528 | </configuration> |
561 | 529 | </plugin> |
562 | 530 | <plugin> |
563 | 531 | <groupId>org.apache.maven.plugins</groupId> |
564 | 532 | <artifactId>maven-failsafe-plugin</artifactId> |
565 | | - <version>3.2.5</version> |
566 | 533 | <configuration> |
567 | 534 | <argLine>${failsafe.jacoco.args}</argLine> |
568 | 535 | </configuration> |
|
578 | 545 | <plugin> |
579 | 546 | <groupId>org.springframework.boot</groupId> |
580 | 547 | <artifactId>spring-boot-maven-plugin</artifactId> |
581 | | - <version>3.2.5</version> |
582 | 548 | <configuration> |
583 | 549 | <image> |
584 | 550 | <builder>paketobuildpacks/builder-jammy-tiny</builder> |
|
745 | 711 | <plugin> |
746 | 712 | <groupId>org.springframework.boot</groupId> |
747 | 713 | <artifactId>spring-boot-maven-plugin</artifactId> |
748 | | - <version>3.2.5</version> |
749 | 714 | <configuration> |
750 | 715 | <jvmArguments>-Dvaadin.productionMode</jvmArguments> |
751 | 716 | </configuration> |
|
773 | 738 | <dependency> |
774 | 739 | <groupId>org.cftoolsuite.actuator</groupId> |
775 | 740 | <artifactId>spring-boot-starter-runtime-metadata</artifactId> |
776 | | - <version>0.3.0</version> |
| 741 | + <version>0.4.0</version> |
777 | 742 | </dependency> |
778 | 743 | </dependencies> |
779 | 744 | </profile> |
|
800 | 765 | <plugin> |
801 | 766 | <groupId>org.codehaus.mojo</groupId> |
802 | 767 | <artifactId>versions-maven-plugin</artifactId> |
803 | | - <version>2.16.2</version> |
804 | 768 | <reportSets> |
805 | 769 | <reportSet> |
806 | 770 | <reports> |
|
0 commit comments