Skip to content

Updated dependencies to align with Spring Boot 3.3.4 #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 22, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
restore-keys: |
${{ runner.os }}-maven-

- name: Set up JDK 22
- name: Set up JDK 23
uses: oracle-actions/setup-java@v1
with:
website: jdk.java.net
release: 22
release: 23

- name: Run Maven
run: ./mvnw clean install -Pall-quality-gates -B
Expand All @@ -40,11 +40,11 @@ jobs:
fetch-depth: 0
persist-credentials: false

- name: Set up JDK 22
- name: Set up JDK 23
uses: oracle-actions/setup-java@v1
with:
website: jdk.java.net
release: 22
release: 23

- name: Determine version
run: echo "POM_VERSION=$(./mvnw -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec | sed -e 's/-SNAPSHOT//')" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/latest-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up JDK 22
- name: Set up JDK 23
uses: oracle-actions/setup-java@v1
with:
website: jdk.java.net
release: 22
release: 23

- name: Run Maven
run: ./mvnw clean versions:update-properties scm:check-local-modification -U -B
4 changes: 2 additions & 2 deletions .github/workflows/owasp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
${{ runner.os }}-maven-${{ steps.get-date.outputs.datetime }}
${{ runner.os }}-maven-

- name: Set up JDK 22
- name: Set up JDK 23
uses: oracle-actions/setup-java@v1
with:
website: jdk.java.net
release: 22
release: 23

- name: Run Maven
run: ./mvnw clean dependency-check:check -DnvdApiKey=${{ secrets.NVD_API_KEY }} -DnvdApiDelay=6000 -B
Expand Down
3 changes: 3 additions & 0 deletions documentation/releases/release-3.2.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Dependencies

* Aligned dependencies with [Spring Boot 3.3.4](https://github.com/spring-projects/spring-boot/releases/tag/v3.3.4)
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
<aspectj.version>1.9.22.1</aspectj.version>
<httpcore5.version>5.2.5</httpcore5.version>
<slf4j.version>2.0.16</slf4j.version>
<spring.version>6.1.12</spring.version>
<spring.version>6.1.13</spring.version>

<!-- Test dependency versions -->
<spt-development-test.version>3.1.10</spt-development-test.version>
<spt-development-test.version>3.1.11</spt-development-test.version>

<!-- Test dependency versions, matched to Spring Boot -->
<hamcrest.version>2.2</hamcrest.version>
<junit-jupiter.version>5.10.3</junit-jupiter.version>
<logback.version>1.5.7</logback.version>
<logback.version>1.5.8</logback.version>
<mockito.version>5.11.0</mockito.version>

<!-- Plugin versions -->
Expand All @@ -70,8 +70,8 @@
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-surefire-plugin.version>3.5.0</maven-surefire-plugin.version>
<nexus-staging-plugin.version>1.7.0</nexus-staging-plugin.version>
<pitest-maven.version>1.16.3</pitest-maven.version>
<spotbugs.version>4.8.6.3</spotbugs.version>
<pitest-maven.version>1.17.0</pitest-maven.version>
<spotbugs.version>4.8.6.4</spotbugs.version>
<versions-maven-plugin.version>2.17.1</versions-maven-plugin.version>

<!-- Plugin dependencies -->
Expand Down