Skip to content

Commit 1a3e788

Browse files
committed
Use jdk 21
1 parent 4177a65 commit 1a3e788

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
java: [17, 21]
16+
java: [21]
1717
name: Java ${{ matrix.java }} sample
1818

1919
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Calimero-core [![CI with Gradle](https://github.com/calimero-project/calimero-co
44
git clone https://github.com/calimero-project/calimero-core.git
55
~~~
66

7-
Calimero-core provides (secure) KNX communication protocols, KNX datapoint & property access, and management functionality. [JDK 17](https://openjdk.org/projects/jdk/17/) (_java.base_) is the minimum required runtime environment.
7+
Calimero-core provides (secure) KNX communication protocols, KNX datapoint & property access, and management functionality. [JDK 21](https://openjdk.org/projects/jdk/21/) (_java.base_) is the minimum required runtime environment.
88
Calimero was developed with a focus on applications that run on embedded devices and require a small footprint.
99

1010
Code examples for using this library are shown in the [introduction](https://github.com/calimero-project/introduction).

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ version = "3.0-SNAPSHOT"
2727

2828
java {
2929
toolchain {
30-
languageVersion.set(JavaLanguageVersion.of(17))
30+
languageVersion.set(JavaLanguageVersion.of(21))
3131
}
3232
withSourcesJar()
3333
withJavadocJar()

jitpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
jdk:
2-
- openjdk17
2+
- openjdk21

0 commit comments

Comments
 (0)