Skip to content

Commit 8578374

Browse files
committed
Remove references to java 17
1 parent cd71dc0 commit 8578374

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/gradle.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ jobs:
1212
runs-on: "${{ matrix.os }}"
1313
steps:
1414
- uses: actions/checkout@v4
15-
- name: Set up JDK 17
16-
uses: actions/setup-java@v4
17-
with:
18-
java-version: '17'
19-
distribution: 'zulu'
20-
cache: 'gradle'
2115
- name: Set up JDK 21
2216
uses: actions/setup-java@v4
2317
with:

gradle/build-logic/src/main/kotlin/hyperverse.base-conventions.gradle.kts

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

66
indra {
77
javaVersions {
8-
minimumToolchain(17)
9-
target(17)
10-
testWith().set(setOf(17))
8+
minimumToolchain(21)
9+
target(21)
10+
testWith().set(setOf(21))
1111
}
1212
checkstyle().set(libs.versions.checkstyle)
1313
}

0 commit comments

Comments
 (0)