Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up openJDK version
uses: actions/setup-java@v5
with:
java-version: 21
java-version: 25
distribution: 'zulu' # =openJDK
- name: Setup gradle
uses: gradle/actions/setup-gradle@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_NAME: kit-data-manager/Typed-PID-Maker # repo name != app name in our case!
jdk: 21
jdk: 25
distro: 'temurin'
DOCKER_PLATFORMS: linux/amd64,linux/arm64

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, macOS-latest, windows-latest]
jdk: [ 21 ] # (open)JDK releases
jdk: [ 25 ] # (open)JDK releases

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
Expand All @@ -40,10 +40,10 @@ jobs:
- name: Build and Test with Gradle
run: ./gradlew -Dprofile=verbose build
- name: Do one Coveralls test report
if: matrix.operating-system == 'ubuntu-latest' && matrix.jdk == 21
if: matrix.operating-system == 'ubuntu-latest' && matrix.jdk == 25
run: ./gradlew jacocoTestReport coveralls
- name: Docker build and test
if: matrix.operating-system == 'ubuntu-latest' && matrix.jdk == 21
if: matrix.operating-system == 'ubuntu-latest' && matrix.jdk == 25
run: |
curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/4.0.0/hurl_4.0.0_amd64.deb
sudo dpkg -i hurl_4.0.0_amd64.deb
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ All other configuration properties affect only the `uniquely-generated-string`.

> Note: Alternatively, you can use the docker image.

**Required**: Java SE Development Kit 21 (or openjdk 21) or higher
**Required**: Java SE Development Kit 25 (or openjdk 25) or higher

- Building (with tests): `./gradlew clean build`
- Building (with verbose test output) `./gradlew -Dprofile=verbose clean build`
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ dependencies {

implementation("net.handle:handle-client:9.3.2")

testImplementation(platform('org.junit:junit-bom:5.13.4'))
testImplementation(platform('org.junit:junit-bom:5.14.4'))
testImplementation('org.junit.jupiter:junit-jupiter')
testImplementation('org.junit.jupiter:junit-jupiter-params')

Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile-build-in-image
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21 AS build-typid
FROM eclipse-temurin:25 AS build-typid
LABEL maintainer="webmaster@datamanager.kit.edu"
LABEL stage=build
RUN mkdir -p /app/
Expand All @@ -9,7 +9,7 @@ RUN ./gradlew build -x test --stacktrace && \


# Create a clean, minimal image
FROM eclipse-temurin:21 AS typed-pid-maker
FROM eclipse-temurin:25 AS typed-pid-maker
LABEL maintainer="webmaster@datamanager.kit.edu"
LABEL stage=run

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-reuse-local-build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Create a clean, minimal image
FROM eclipse-temurin:21 AS typed-pid-maker
FROM eclipse-temurin:25 AS typed-pid-maker
LABEL maintainer="webmaster@datamanager.kit.edu"
LABEL stage=run

Expand Down
Loading