Skip to content

Commit 1040ef3

Browse files
committed
update java, spring and dependencies
1 parent db94a1c commit 1040ef3

2 files changed

Lines changed: 23 additions & 18 deletions

File tree

.idea/misc.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?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">
34
<modelVersion>4.0.0</modelVersion>
45

56
<parent>
67
<groupId>org.springframework.boot</groupId>
78
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.4.5</version>
9+
<version>3.5.6</version>
910
<relativePath/> <!-- lookup parent from repository -->
1011
</parent>
1112

@@ -16,7 +17,7 @@
1617
<packaging>jar</packaging>
1718

1819
<properties>
19-
<java.version>21</java.version>
20+
<java.version>25</java.version>
2021
</properties>
2122

2223
<dependencies>
@@ -52,7 +53,7 @@
5253
<dependency>
5354
<groupId>io.github.classgraph</groupId>
5455
<artifactId>classgraph</artifactId>
55-
<version>4.8.175</version>
56+
<version>4.8.181</version>
5657
</dependency>
5758

5859

@@ -61,7 +62,7 @@
6162
<dependency>
6263
<groupId>commons-validator</groupId>
6364
<artifactId>commons-validator</artifactId>
64-
<version>1.9.0</version>
65+
<version>1.10.0</version>
6566
<exclusions>
6667
<exclusion>
6768
<groupId>commons-collections</groupId>
@@ -74,18 +75,11 @@
7475
</exclusions>
7576
</dependency>
7677

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-
8478
<!-- Swagger -->
8579
<dependency>
8680
<groupId>org.springdoc</groupId>
8781
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
88-
<version>2.8.9</version>
82+
<version>2.8.13</version>
8983
</dependency>
9084

9185
<!-- Testing -->
@@ -160,16 +154,27 @@
160154
<plugin>
161155
<groupId>org.apache.maven.plugins</groupId>
162156
<artifactId>maven-compiler-plugin</artifactId>
163-
<version>3.13.0</version>
157+
<version>3.14.1</version>
164158
<configuration>
165159
<source>${java.version}</source>
166160
<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>
167172
</configuration>
168173
</plugin>
169174
<plugin>
170175
<groupId>org.apache.maven.plugins</groupId>
171176
<artifactId>maven-checkstyle-plugin</artifactId>
172-
<version>3.5.0</version>
177+
<version>3.6.0</version>
173178
<configuration>
174179
<configLocation>checkstyle.xml</configLocation>
175180
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
@@ -191,7 +196,7 @@
191196
<dependency>
192197
<groupId>com.puppycrawl.tools</groupId>
193198
<artifactId>checkstyle</artifactId>
194-
<version>10.18.1</version>
199+
<version>11.1.0</version>
195200
</dependency>
196201
<dependency>
197202
<groupId>it.aboutbits</groupId>

0 commit comments

Comments
 (0)