Skip to content

Commit 2780b0a

Browse files
authored
Merge pull request #37 from spt-development/feature/spring-b00t-3.4.0-upgrade
Updated dependencies to align with Spring Boot 3.4.0
2 parents 5c8e68f + 397c2e2 commit 2780b0a

File tree

4 files changed

+32
-11
lines changed

4 files changed

+32
-11
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Dependencies
2+
3+
* Aligned dependencies with [Spring Boot 3.4.0](https://github.com/spring-projects/spring-boot/releases/tag/v3.4.0)

pom.xml

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.spt-development</groupId>
55
<artifactId>spt-development-logging-spring-boot</artifactId>
6-
<version>3.3.6-SNAPSHOT</version>
6+
<version>3.4.0-SNAPSHOT</version>
77

88
<name>logging-spring-boot</name>
99
<description>Library for integrating spt-development/spt-development-logging-spring into a Spring Boot application.</description>
@@ -40,9 +40,9 @@
4040
<maven.min.version>3.9.4</maven.min.version>
4141

4242
<!-- Dependency versions -->
43-
<spring-boot.version>3.3.5</spring-boot.version>
43+
<spring-boot.version>3.4.0</spring-boot.version>
4444
<spt-cid.version>2.0.15</spt-cid.version>
45-
<spt-logging-spring.version>3.2.4</spt-logging-spring.version>
45+
<spt-logging-spring.version>3.2.5</spt-logging-spring.version>
4646

4747
<!-- Plugin versions -->
4848
<build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version>
@@ -54,24 +54,25 @@
5454
<maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version>
5555
<maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version>
5656
<maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version>
57-
<maven-javadoc-plugin.version>3.10.1</maven-javadoc-plugin.version>
57+
<maven-javadoc-plugin.version>3.11.1</maven-javadoc-plugin.version>
5858
<maven-jxr-plugin.version>3.6.0</maven-jxr-plugin.version>
5959
<maven-pmd-plugin.version>3.26.0</maven-pmd-plugin.version>
6060
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
6161
<maven-scm-plugin.version>2.1.0</maven-scm-plugin.version>
6262
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
63-
<maven-surefire-plugin.version>3.5.1</maven-surefire-plugin.version>
63+
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
6464
<nexus-staging-plugin.version>1.7.0</nexus-staging-plugin.version>
65-
<pitest-maven.version>1.17.0</pitest-maven.version>
66-
<spotbugs.version>4.8.6.5</spotbugs.version>
67-
<versions-maven-plugin.version>2.17.1</versions-maven-plugin.version>
65+
<pitest-maven.version>1.17.1</pitest-maven.version>
66+
<spotbugs.version>4.8.6.6</spotbugs.version>
67+
<versions-maven-plugin.version>2.18.0</versions-maven-plugin.version>
6868

6969
<!-- Plugin dependencies -->
70-
<checkstyle.version>10.20.0</checkstyle.version>
70+
<checkstyle.version>10.20.1</checkstyle.version>
7171
<findbugs-slf4j-bug-pattern.version>1.5.0</findbugs-slf4j-bug-pattern.version>
7272
<findbugs-sec-bug-pattern.version>1.13.0</findbugs-sec-bug-pattern.version>
7373
<pitest-junit5-plugin.version>1.2.1</pitest-junit5-plugin.version>
7474
<pmd.version>7.7.0</pmd.version>
75+
<slf4j.version>2.0.16</slf4j.version>
7576
</properties>
7677

7778
<dependencyManagement>
@@ -261,6 +262,23 @@
261262
<artifactId>spotbugs-maven-plugin</artifactId>
262263
<version>${spotbugs.version}</version>
263264
<dependencies>
265+
<!--
266+
Added slf4j dependencies to resolve warning:
267+
268+
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
269+
...
270+
-->
271+
<dependency>
272+
<groupId>org.slf4j</groupId>
273+
<artifactId>slf4j-api</artifactId>
274+
<version>${slf4j.version}</version>
275+
</dependency>
276+
<dependency>
277+
<groupId>org.slf4j</groupId>
278+
<artifactId>slf4j-simple</artifactId>
279+
<version>${slf4j.version}</version>
280+
</dependency>
281+
264282
<!-- Included as dependencies as well as plugins so that versions plugins picks up new versions -->
265283
<dependency>
266284
<groupId>jp.skypencil.findbugs.slf4j</groupId>

spt-development-logging-spring-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.spt-development</groupId>
77
<artifactId>spt-development-logging-spring-boot</artifactId>
8-
<version>3.3.6-SNAPSHOT</version>
8+
<version>3.4.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>spt-development-logging-spring-boot-autoconfigure</artifactId>

spt-development-logging-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.spt-development</groupId>
77
<artifactId>spt-development-logging-spring-boot</artifactId>
8-
<version>3.3.6-SNAPSHOT</version>
8+
<version>3.4.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>spt-development-logging-spring-boot-starter</artifactId>

0 commit comments

Comments
 (0)