Skip to content

Commit c114574

Browse files
committed
Upgrade dependencies, maven plugins; prepare for release
* Add `spotbugs-annotations` to avoid compiler warnings for missed classes
1 parent 9c603ab commit c114574

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

pom.xml

+11-9
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333

3434
<aspectj.version>1.9.22.1</aspectj.version>
3535
<assertj.version>3.26.3</assertj.version>
36-
<junit-jupiter.version>5.11.2</junit-jupiter.version>
37-
<log4j.version>2.24.1</log4j.version>
36+
<junit-jupiter.version>5.11.3</junit-jupiter.version>
37+
<log4j.version>2.24.2</log4j.version>
3838
<mockito.version>5.14.2</mockito.version>
3939
<spring.framework.version>6.0.23</spring.framework.version>
4040
<micrometer.version>1.10.13</micrometer.version>
@@ -71,17 +71,18 @@
7171
<artifactId>spring-context</artifactId>
7272
<optional>true</optional>
7373
</dependency>
74-
<dependency>
75-
<groupId>org.springframework</groupId>
76-
<artifactId>spring-core</artifactId>
77-
<optional>true</optional>
78-
</dependency>
7974
<dependency>
8075
<groupId>io.micrometer</groupId>
8176
<artifactId>micrometer-core</artifactId>
8277
<version>${micrometer.version}</version>
8378
<optional>true</optional>
8479
</dependency>
80+
<dependency>
81+
<groupId>com.github.spotbugs</groupId>
82+
<artifactId>spotbugs-annotations</artifactId>
83+
<version>4.8.6</version>
84+
<optional>true</optional>
85+
</dependency>
8586

8687
<dependency>
8788
<groupId>org.springframework</groupId>
@@ -195,7 +196,7 @@
195196
<plugin>
196197
<groupId>org.apache.maven.plugins</groupId>
197198
<artifactId>maven-javadoc-plugin</artifactId>
198-
<version>3.10.1</version>
199+
<version>3.11.2</version>
199200
</plugin>
200201
<plugin>
201202
<groupId>org.apache.maven.plugins</groupId>
@@ -210,7 +211,7 @@
210211
<plugin>
211212
<groupId>org.apache.maven.plugins</groupId>
212213
<artifactId>maven-surefire-plugin</artifactId>
213-
<version>3.5.1</version>
214+
<version>3.5.2</version>
214215
</plugin>
215216
<plugin>
216217
<groupId>com.gradle</groupId>
@@ -239,6 +240,7 @@
239240
<artifactId>maven-compiler-plugin</artifactId>
240241
<configuration>
241242
<release>${java.version}</release>
243+
<proc>none</proc>
242244
</configuration>
243245
</plugin>
244246
<plugin>

0 commit comments

Comments
 (0)