Skip to content

Commit 6c77c56

Browse files
committed
build: build with Java 17
BREAKING CHANGE: Drops support for Java 11. This library now requires Java >= 17
1 parent fa50a9e commit 6c77c56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
java-version: [ 11, 17, 21, 25 ]
17+
java-version: [ 17, 21, 25 ]
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:6.0.1")
3232
}
3333

34-
val compilationTargetJavaVersion = JavaLanguageVersion.of(11)
34+
val compilationTargetJavaVersion = JavaLanguageVersion.of(17)
3535

3636
java {
3737
toolchain {

0 commit comments

Comments
 (0)