From 3b5fdb0694bf08a2e61e42a150e9a3d97d69ffee Mon Sep 17 00:00:00 2001 From: Luca Tassinari Date: Mon, 8 Jan 2024 10:21:37 +0100 Subject: [PATCH] chore: set jvm version to 21 --- .idea/compiler.xml | 2 +- .idea/misc.xml | 2 +- .idea/vcs.xml | 3 +++ build.gradle.kts | 6 ++++++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.idea/compiler.xml b/.idea/compiler.xml index b589d56e..b86273d9 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index fe0b0dab..ef462871 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -4,7 +4,7 @@ - + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 94a25f7f..8ee1c681 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -2,5 +2,8 @@ + + + \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 0786cf27..adad4a5c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,6 +33,12 @@ dependencies { testImplementation(libs.bundles.kotlin.testing) } +java { + toolchain { + languageVersion.set(JavaLanguageVersion.of(21)) + } +} + kotlin { target { compilations.all {