Skip to content

Commit 8a4b098

Browse files
committed
Updated dependencies to align with Spring Boot 3.5.0
1 parent 9dd2b9e commit 8a4b098

File tree

6 files changed

+28
-33
lines changed

6 files changed

+28
-33
lines changed

.github/maven-settings.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
<servers>
77
<server>
8-
<id>ossrh</id>
9-
<username>${env.OSSRH_USERNAME}</username>
10-
<password>${env.OSSRH_PASSWORD}</password>
8+
<id>central</id>
9+
<username>${env.CENTRAL_USERNAME}</username>
10+
<password>${env.CENTRAL_PASSWORD}</password>
1111
</server>
1212
<server>
1313
<id>github.com</id>
@@ -17,13 +17,13 @@
1717
</servers>
1818
<profiles>
1919
<profile>
20-
<id>ossrh</id>
20+
<id>central</id>
2121
<activation>
2222
<activeByDefault>true</activeByDefault>
2323
</activation>
2424
<properties>
2525
<gpg.executable>gpg</gpg.executable>
2626
</properties>
27-
</profile>
27+
</profile>
2828
</profiles>
2929
</settings>

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ jobs:
6464
- name: Create release
6565
run: ./mvnw --settings .github/maven-settings.xml release:prepare release:perform -DskipTests -Prelease -B
6666
env:
67-
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
68-
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
67+
CENTRAL_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
68+
CENTRAL_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
6969
GIT_HUB_USERNAME: ${{ secrets.GIT_HUB_USERNAME }}
7070
GIT_HUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
7171
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
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.5.0](https://github.com/spring-projects/spring-boot/releases/tag/v3.5.0)

pom.xml

Lines changed: 16 additions & 24 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.4.6-SNAPSHOT</version>
6+
<version>3.5.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,12 +40,13 @@
4040
<maven.min.version>3.9.4</maven.min.version>
4141

4242
<!-- Dependency versions -->
43-
<spring-boot.version>3.4.5</spring-boot.version>
43+
<spring-boot.version>3.5.0</spring-boot.version>
4444
<spt-cid.version>2.0.15</spt-cid.version>
45-
<spt-logging-spring.version>3.2.9</spt-logging-spring.version>
45+
<spt-logging-spring.version>3.2.10</spt-logging-spring.version>
4646

4747
<!-- Plugin versions -->
4848
<build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version>
49+
<central-publishing-plugin.version>0.7.0</central-publishing-plugin.version>
4950
<checkstyle-maven-plugin.version>3.6.0</checkstyle-maven-plugin.version>
5051
<dependency-check-maven.version>12.1.1</dependency-check-maven.version>
5152
<jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version>
@@ -61,16 +62,15 @@
6162
<maven-scm-plugin.version>2.1.0</maven-scm-plugin.version>
6263
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
6364
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
64-
<nexus-staging-plugin.version>1.7.0</nexus-staging-plugin.version>
65-
<pitest-maven.version>1.19.1</pitest-maven.version>
65+
<pitest-maven.version>1.19.4</pitest-maven.version>
6666
<spotbugs.version>4.9.3.0</spotbugs.version>
6767
<versions-maven-plugin.version>2.18.0</versions-maven-plugin.version>
6868

6969
<!-- Plugin dependencies -->
70-
<checkstyle.version>10.23.1</checkstyle.version>
70+
<checkstyle.version>10.24.0</checkstyle.version>
7171
<findbugs-slf4j-bug-pattern.version>1.5.0</findbugs-slf4j-bug-pattern.version>
7272
<findbugs-sec-bug-pattern.version>1.14.0</findbugs-sec-bug-pattern.version>
73-
<pitest-junit5-plugin.version>1.2.2</pitest-junit5-plugin.version>
73+
<pitest-junit5-plugin.version>1.2.3</pitest-junit5-plugin.version>
7474
<pmd.version>7.13.0</pmd.version>
7575
<slf4j.version>2.0.17</slf4j.version>
7676
</properties>
@@ -380,9 +380,9 @@
380380
<version>${pitest-maven.version}</version>
381381
</plugin>
382382
<plugin>
383-
<groupId>org.sonatype.plugins</groupId>
384-
<artifactId>nexus-staging-maven-plugin</artifactId>
385-
<version>${nexus-staging-plugin.version}</version>
383+
<groupId>org.sonatype.central</groupId>
384+
<artifactId>central-publishing-maven-plugin</artifactId>
385+
<version>${central-publishing-plugin.version}</version>
386386
</plugin>
387387
</plugins>
388388
</pluginManagement>
@@ -634,13 +634,13 @@
634634
<!-- Version defined in pluginManagement section -->
635635
</plugin>
636636
<plugin>
637-
<groupId>org.sonatype.plugins</groupId>
638-
<artifactId>nexus-staging-maven-plugin</artifactId>
637+
<groupId>org.sonatype.central</groupId>
638+
<artifactId>central-publishing-maven-plugin</artifactId>
639639
<extensions>true</extensions>
640640
<configuration>
641-
<serverId>ossrh</serverId>
642-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
643-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
641+
<publishingServerId>central</publishingServerId>
642+
<autoPublish>true</autoPublish>
643+
<waitUntil>published</waitUntil>
644644
</configuration>
645645
<!-- Version defined in pluginManagement section -->
646646
</plugin>
@@ -662,7 +662,7 @@
662662
</plugin>
663663
<plugin>
664664
<groupId>org.sonatype.plugins</groupId>
665-
<artifactId>nexus-staging-maven-plugin</artifactId>
665+
<artifactId>central-publishing-maven-plugin</artifactId>
666666
<!-- Version and configuration etc defined in pluginManagement section -->
667667
</plugin>
668668
</plugins>
@@ -691,13 +691,5 @@
691691
<id>github</id>
692692
<url>https://github.com/spt-development/spt-development-logging-spring-boot</url>
693693
</site>
694-
<repository>
695-
<id>ossrh</id>
696-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
697-
</repository>
698-
<snapshotRepository>
699-
<id>ossrh</id>
700-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
701-
</snapshotRepository>
702694
</distributionManagement>
703695
</project>

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.4.6-SNAPSHOT</version>
8+
<version>3.5.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.4.6-SNAPSHOT</version>
8+
<version>3.5.0-SNAPSHOT</version>
99
</parent>
1010

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

0 commit comments

Comments
 (0)