|
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.6</version> |
9 | 10 | <relativePath/> <!-- lookup parent from repository --> |
10 | 11 | </parent> |
11 | 12 |
|
|
16 | 17 | <packaging>jar</packaging> |
17 | 18 |
|
18 | 19 | <properties> |
19 | | - <java.version>21</java.version> |
| 20 | + <java.version>25</java.version> |
20 | 21 | </properties> |
21 | 22 |
|
22 | 23 | <dependencies> |
|
52 | 53 | <dependency> |
53 | 54 | <groupId>io.github.classgraph</groupId> |
54 | 55 | <artifactId>classgraph</artifactId> |
55 | | - <version>4.8.175</version> |
| 56 | + <version>4.8.181</version> |
56 | 57 | </dependency> |
57 | 58 |
|
58 | 59 |
|
|
61 | 62 | <dependency> |
62 | 63 | <groupId>commons-validator</groupId> |
63 | 64 | <artifactId>commons-validator</artifactId> |
64 | | - <version>1.9.0</version> |
| 65 | + <version>1.10.0</version> |
65 | 66 | <exclusions> |
66 | 67 | <exclusion> |
67 | 68 | <groupId>commons-collections</groupId> |
|
74 | 75 | </exclusions> |
75 | 76 | </dependency> |
76 | 77 |
|
77 | | - <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 --> |
78 | | - <dependency> |
79 | | - <groupId>org.apache.commons</groupId> |
80 | | - <artifactId>commons-collections4</artifactId> |
81 | | - <version>4.4</version> |
82 | | - </dependency> |
83 | | - |
84 | 78 | <!-- Swagger --> |
85 | 79 | <dependency> |
86 | 80 | <groupId>org.springdoc</groupId> |
87 | 81 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
88 | | - <version>2.8.9</version> |
| 82 | + <version>2.8.13</version> |
89 | 83 | </dependency> |
90 | 84 |
|
91 | 85 | <!-- Testing --> |
|
160 | 154 | <plugin> |
161 | 155 | <groupId>org.apache.maven.plugins</groupId> |
162 | 156 | <artifactId>maven-compiler-plugin</artifactId> |
163 | | - <version>3.13.0</version> |
| 157 | + <version>3.14.1</version> |
164 | 158 | <configuration> |
165 | 159 | <source>${java.version}</source> |
166 | 160 | <target>${java.version}</target> |
| 161 | + <annotationProcessorPaths> |
| 162 | + <path> |
| 163 | + <groupId>org.springframework.boot</groupId> |
| 164 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 165 | + </path> |
| 166 | + <path> |
| 167 | + <groupId>org.projectlombok</groupId> |
| 168 | + <artifactId>lombok</artifactId> |
| 169 | + <version>${lombok.version}</version> |
| 170 | + </path> |
| 171 | + </annotationProcessorPaths> |
167 | 172 | </configuration> |
168 | 173 | </plugin> |
169 | 174 | <plugin> |
170 | 175 | <groupId>org.apache.maven.plugins</groupId> |
171 | 176 | <artifactId>maven-checkstyle-plugin</artifactId> |
172 | | - <version>3.5.0</version> |
| 177 | + <version>3.6.0</version> |
173 | 178 | <configuration> |
174 | 179 | <configLocation>checkstyle.xml</configLocation> |
175 | 180 | <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> |
|
191 | 196 | <dependency> |
192 | 197 | <groupId>com.puppycrawl.tools</groupId> |
193 | 198 | <artifactId>checkstyle</artifactId> |
194 | | - <version>10.18.1</version> |
| 199 | + <version>11.1.0</version> |
195 | 200 | </dependency> |
196 | 201 | <dependency> |
197 | 202 | <groupId>it.aboutbits</groupId> |
|
0 commit comments