Skip to content

Commit 92e315c

Browse files
committed
update java and deps
1 parent 3ff7ef2 commit 92e315c

2 files changed

Lines changed: 17 additions & 10 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: 15 additions & 8 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.7</version>
910
<relativePath/> <!-- lookup parent from repository -->
1011
</parent>
1112

@@ -15,15 +16,15 @@
1516
<description>Testing library for Spring Boot projects.</description>
1617

1718
<properties>
18-
<java.version>21</java.version>
19+
<java.version>25</java.version>
1920
</properties>
2021

2122
<dependencyManagement>
2223
<dependencies>
2324
<dependency>
2425
<groupId>it.aboutbits</groupId>
2526
<artifactId>spring-boot-toolbox</artifactId>
26-
<version>1.3.0</version>
27+
<version>1.6.0</version>
2728
</dependency>
2829
</dependencies>
2930
</dependencyManagement>
@@ -50,11 +51,17 @@
5051
<dependency>
5152
<groupId>org.springframework.boot</groupId>
5253
<artifactId>spring-boot-starter-test</artifactId>
54+
<exclusions>
55+
<exclusion>
56+
<groupId>org.hamcrest</groupId>
57+
<artifactId>hamcrest</artifactId>
58+
</exclusion>
59+
</exclusions>
5360
</dependency>
5461
<dependency>
5562
<groupId>net.datafaker</groupId>
5663
<artifactId>datafaker</artifactId>
57-
<version>2.4.3</version>
64+
<version>2.5.3</version>
5865
</dependency>
5966
</dependencies>
6067

@@ -63,7 +70,7 @@
6370
<plugin>
6471
<groupId>org.apache.maven.plugins</groupId>
6572
<artifactId>maven-compiler-plugin</artifactId>
66-
<version>3.11.0</version>
73+
<version>3.14.1</version>
6774
<configuration>
6875
<source>${java.version}</source>
6976
<target>${java.version}</target>
@@ -72,7 +79,7 @@
7279
<plugin>
7380
<groupId>org.apache.maven.plugins</groupId>
7481
<artifactId>maven-checkstyle-plugin</artifactId>
75-
<version>3.5.0</version>
82+
<version>3.6.0</version>
7683
<configuration>
7784
<configLocation>checkstyle.xml</configLocation>
7885
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
@@ -94,7 +101,7 @@
94101
<dependency>
95102
<groupId>com.puppycrawl.tools</groupId>
96103
<artifactId>checkstyle</artifactId>
97-
<version>10.18.1</version>
104+
<version>11.1.0</version>
98105
</dependency>
99106
<dependency>
100107
<groupId>it.aboutbits</groupId>

0 commit comments

Comments
 (0)