Skip to content

Commit 3b86590

Browse files
committed
upgrade to Java 17+
1 parent 520f514 commit 3b86590

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
== Changelog
22

33
=== 2.0.1 (under construction)
4-
* TBD
4+
* upgrade to Java 17+
55

66
=== 2.0.0 (released 01.07.2025)
77
* upgrade to Java 11+

gradle/compilation.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
compileJava.options.debugOptions.debugLevel = "source,lines,vars"
44

55
java {
6-
sourceCompatibility = 11
7-
targetCompatibility = 11
6+
sourceCompatibility = 17
7+
targetCompatibility = 17
8+
toolchain {
9+
languageVersion = JavaLanguageVersion.of(17)
10+
}
811
}

0 commit comments

Comments
 (0)