|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | 6 | <parent> |
6 | 7 | <groupId>org.springframework.boot</groupId> |
7 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | | - <version>3.4.5</version> |
| 9 | + <version>3.5.7</version> |
9 | 10 | <relativePath/> <!-- lookup parent from repository --> |
10 | 11 | </parent> |
11 | 12 |
|
|
15 | 16 | <description>Testing library for Spring Boot projects.</description> |
16 | 17 |
|
17 | 18 | <properties> |
18 | | - <java.version>21</java.version> |
| 19 | + <java.version>25</java.version> |
19 | 20 | </properties> |
20 | 21 |
|
21 | 22 | <dependencyManagement> |
22 | 23 | <dependencies> |
23 | 24 | <dependency> |
24 | 25 | <groupId>it.aboutbits</groupId> |
25 | 26 | <artifactId>spring-boot-toolbox</artifactId> |
26 | | - <version>1.3.0</version> |
| 27 | + <version>1.6.0</version> |
27 | 28 | </dependency> |
28 | 29 | </dependencies> |
29 | 30 | </dependencyManagement> |
|
50 | 51 | <dependency> |
51 | 52 | <groupId>org.springframework.boot</groupId> |
52 | 53 | <artifactId>spring-boot-starter-test</artifactId> |
| 54 | + <exclusions> |
| 55 | + <exclusion> |
| 56 | + <groupId>org.hamcrest</groupId> |
| 57 | + <artifactId>hamcrest</artifactId> |
| 58 | + </exclusion> |
| 59 | + </exclusions> |
53 | 60 | </dependency> |
54 | 61 | <dependency> |
55 | 62 | <groupId>net.datafaker</groupId> |
56 | 63 | <artifactId>datafaker</artifactId> |
57 | | - <version>2.4.3</version> |
| 64 | + <version>2.5.3</version> |
58 | 65 | </dependency> |
59 | 66 | </dependencies> |
60 | 67 |
|
|
63 | 70 | <plugin> |
64 | 71 | <groupId>org.apache.maven.plugins</groupId> |
65 | 72 | <artifactId>maven-compiler-plugin</artifactId> |
66 | | - <version>3.11.0</version> |
| 73 | + <version>3.14.1</version> |
67 | 74 | <configuration> |
68 | 75 | <source>${java.version}</source> |
69 | 76 | <target>${java.version}</target> |
| 77 | + <annotationProcessorPaths> |
| 78 | + <path> |
| 79 | + <groupId>org.projectlombok</groupId> |
| 80 | + <artifactId>lombok</artifactId> |
| 81 | + <version>${lombok.version}</version> |
| 82 | + </path> |
| 83 | + </annotationProcessorPaths> |
70 | 84 | </configuration> |
71 | 85 | </plugin> |
72 | 86 | <plugin> |
73 | 87 | <groupId>org.apache.maven.plugins</groupId> |
74 | 88 | <artifactId>maven-checkstyle-plugin</artifactId> |
75 | | - <version>3.5.0</version> |
| 89 | + <version>3.6.0</version> |
76 | 90 | <configuration> |
77 | 91 | <configLocation>checkstyle.xml</configLocation> |
78 | 92 | <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> |
|
94 | 108 | <dependency> |
95 | 109 | <groupId>com.puppycrawl.tools</groupId> |
96 | 110 | <artifactId>checkstyle</artifactId> |
97 | | - <version>10.18.1</version> |
| 111 | + <version>11.1.0</version> |
98 | 112 | </dependency> |
99 | 113 | <dependency> |
100 | 114 | <groupId>it.aboutbits</groupId> |
|
0 commit comments