From e1f8c51c056ddb9a6b6c16837537a54ed91c588d Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Sat, 11 Feb 2023 11:53:36 +0100 Subject: [PATCH] Configure jvmToolchain on the single Kotlin jvm project --- core/model/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/model/build.gradle.kts b/core/model/build.gradle.kts index edfcc4596..eec8d82ab 100644 --- a/core/model/build.gradle.kts +++ b/core/model/build.gradle.kts @@ -19,6 +19,10 @@ plugins { id("kotlin") } +kotlin { + jvmToolchain(11) +} + dependencies { implementation(libs.kotlinx.datetime) } \ No newline at end of file