Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/maven-settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

<servers>
<server>
<id>ossrh</id>
<username>${env.OSSRH_USERNAME}</username>
<password>${env.OSSRH_PASSWORD}</password>
<id>central</id>
<username>${env.CENTRAL_USERNAME}</username>
<password>${env.CENTRAL_PASSWORD}</password>
</server>
<server>
<id>github.com</id>
Expand All @@ -17,13 +17,13 @@
</servers>
<profiles>
<profile>
<id>ossrh</id>
<id>central</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg</gpg.executable>
</properties>
</profile>
</profile>
</profiles>
</settings>
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ jobs:
- name: Create release
run: ./mvnw --settings .github/maven-settings.xml release:prepare release:perform -DskipTests -Prelease -B
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
CENTRAL_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
CENTRAL_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
GIT_HUB_USERNAME: ${{ secrets.GIT_HUB_USERNAME }}
GIT_HUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
Expand Down
3 changes: 3 additions & 0 deletions documentation/releases/release-3.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Dependencies

* Aligned dependencies with [Spring Boot 3.5.0](https://github.com/spring-projects/spring-boot/releases/tag/v3.5.0)
40 changes: 16 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.spt-development</groupId>
<artifactId>spt-development-logging-spring-boot</artifactId>
<version>3.4.6-SNAPSHOT</version>
<version>3.5.0-SNAPSHOT</version>

<name>logging-spring-boot</name>
<description>Library for integrating spt-development/spt-development-logging-spring into a Spring Boot application.</description>
Expand Down Expand Up @@ -40,12 +40,13 @@
<maven.min.version>3.9.4</maven.min.version>

<!-- Dependency versions -->
<spring-boot.version>3.4.5</spring-boot.version>
<spring-boot.version>3.5.0</spring-boot.version>
<spt-cid.version>2.0.15</spt-cid.version>
<spt-logging-spring.version>3.2.9</spt-logging-spring.version>
<spt-logging-spring.version>3.2.10</spt-logging-spring.version>

<!-- Plugin versions -->
<build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version>
<central-publishing-plugin.version>0.7.0</central-publishing-plugin.version>
<checkstyle-maven-plugin.version>3.6.0</checkstyle-maven-plugin.version>
<dependency-check-maven.version>12.1.1</dependency-check-maven.version>
<jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version>
Expand All @@ -61,16 +62,15 @@
<maven-scm-plugin.version>2.1.0</maven-scm-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
<nexus-staging-plugin.version>1.7.0</nexus-staging-plugin.version>
<pitest-maven.version>1.19.1</pitest-maven.version>
<pitest-maven.version>1.19.4</pitest-maven.version>
<spotbugs.version>4.9.3.0</spotbugs.version>
<versions-maven-plugin.version>2.18.0</versions-maven-plugin.version>

<!-- Plugin dependencies -->
<checkstyle.version>10.23.1</checkstyle.version>
<checkstyle.version>10.24.0</checkstyle.version>
<findbugs-slf4j-bug-pattern.version>1.5.0</findbugs-slf4j-bug-pattern.version>
<findbugs-sec-bug-pattern.version>1.14.0</findbugs-sec-bug-pattern.version>
<pitest-junit5-plugin.version>1.2.2</pitest-junit5-plugin.version>
<pitest-junit5-plugin.version>1.2.3</pitest-junit5-plugin.version>
<pmd.version>7.13.0</pmd.version>
<slf4j.version>2.0.17</slf4j.version>
</properties>
Expand Down Expand Up @@ -380,9 +380,9 @@
<version>${pitest-maven.version}</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-plugin.version}</version>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central-publishing-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down Expand Up @@ -634,13 +634,13 @@
<!-- Version defined in pluginManagement section -->
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
<!-- Version defined in pluginManagement section -->
</plugin>
Expand All @@ -662,7 +662,7 @@
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<artifactId>central-publishing-maven-plugin</artifactId>
<!-- Version and configuration etc defined in pluginManagement section -->
</plugin>
</plugins>
Expand Down Expand Up @@ -691,13 +691,5 @@
<id>github</id>
<url>https://github.com/spt-development/spt-development-logging-spring-boot</url>
</site>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
2 changes: 1 addition & 1 deletion spt-development-logging-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.spt-development</groupId>
<artifactId>spt-development-logging-spring-boot</artifactId>
<version>3.4.6-SNAPSHOT</version>
<version>3.5.0-SNAPSHOT</version>
</parent>

<artifactId>spt-development-logging-spring-boot-autoconfigure</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spt-development-logging-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.spt-development</groupId>
<artifactId>spt-development-logging-spring-boot</artifactId>
<version>3.4.6-SNAPSHOT</version>
<version>3.5.0-SNAPSHOT</version>
</parent>

<artifactId>spt-development-logging-spring-boot-starter</artifactId>
Expand Down