From 520dfaf06c1cfb54effa684b234267899ba88714 Mon Sep 17 00:00:00 2001 From: "Philip K. Warren" Date: Mon, 2 Dec 2024 12:53:48 -0600 Subject: [PATCH] Update connect-kotlin to target kotlin 1.8 Kotlin 1.6 and 1.7 are now marked deprecated in KT-60521. Update connect-kotlin to target Kotlin 1.8. Signed-off-by: Philip K. Warren --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1cd312d0..78400b84 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -133,8 +133,8 @@ subprojects { tasks.withType { compilerOptions { jvmTarget.set(JvmTarget.JVM_1_8) - languageVersion.set(KotlinVersion.KOTLIN_1_7) - apiVersion.set(KotlinVersion.KOTLIN_1_7) + languageVersion.set(KotlinVersion.KOTLIN_1_8) + apiVersion.set(KotlinVersion.KOTLIN_1_8) if (JavaVersion.current().isJava9Compatible && project.name != "android") { freeCompilerArgs.add("-Xjdk-release=1.8") }