Skip to content

Commit 313c010

Browse files
committed
version updates
1 parent 48033c6 commit 313c010

File tree

8 files changed

+22
-17
lines changed

8 files changed

+22
-17
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Java 11
18+
- name: Set up Java
1919
uses: actions/setup-java@v4
2020
with:
2121
distribution: 'temurin'
22-
java-version: '11'
22+
java-version: '21'
2323
- uses: gradle/actions/setup-gradle@v4
2424
- name: Build with Gradle
2525
run: ./gradlew build

.github/workflows/dependency-submission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
uses: actions/setup-java@v4
1616
with:
1717
distribution: 'temurin'
18-
java-version: '11'
18+
java-version: '21'
1919
- name: Generate and submit dependency graph
2020
uses: gradle/actions/dependency-submission@v4

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Java 11
18+
- name: Set up Java
1919
uses: actions/setup-java@v4
2020
with:
2121
distribution: 'temurin'
22-
java-version: '11'
22+
java-version: '21'
2323
- uses: gradle/actions/setup-gradle@v4
2424
- name: Build with Gradle
2525
run: ./gradlew test

build.gradle.kts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
pmd
66
checkstyle
77
jacoco
8-
id("com.github.spotbugs") version "6.0.9"
8+
id("com.github.spotbugs") version "6.0.20"
99
}
1010

1111
group = "de.siegmar"
@@ -24,15 +24,15 @@ repositories {
2424
}
2525

2626
dependencies {
27-
api("ch.qos.logback:logback-classic:1.5.3")
28-
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
27+
api("ch.qos.logback:logback-classic:1.5.7")
28+
testImplementation("org.junit.jupiter:junit-jupiter:5.11.0")
2929
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
30-
testImplementation("org.assertj:assertj-core:3.25.3")
31-
testImplementation("net.javacrumbs.json-unit:json-unit-assertj:2.38.0")
32-
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.17.0")
33-
testImplementation("org.bouncycastle:bcpkix-jdk18on:1.77")
34-
testImplementation("org.wiremock:wiremock:3.4.2")
35-
testImplementation("org.awaitility:awaitility:4.2.1")
30+
testImplementation("org.assertj:assertj-core:3.26.3")
31+
testImplementation("net.javacrumbs.json-unit:json-unit-assertj:2.40.1")
32+
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")
33+
testImplementation("org.bouncycastle:bcpkix-jdk18on:1.78.1")
34+
testImplementation("org.wiremock:wiremock:3.9.1")
35+
testImplementation("org.awaitility:awaitility:4.2.2")
3636
}
3737

3838
tasks.test {

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -55,7 +57,7 @@
5557
# Darwin, MinGW, and NonStop.
5658
#
5759
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
60+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5961
# within the Gradle project.
6062
#
6163
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

0 commit comments

Comments
 (0)