From 7efd347da6c27b2df06974f1592fda34eacf67ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Mon, 22 May 2023 15:43:37 +0200 Subject: [PATCH] Upgrade to Kotlin 1.8 This commit also disables the JVM target validation introduced in Kotlin 1.8 since Kotlin is not yet compatible with Java 21. Closes gh-29754 --- gradle.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 645a7977ccf..9e7d099ff5b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,6 +4,7 @@ org.gradle.caching=true org.gradle.jvmargs=-Xmx2048m org.gradle.parallel=true -kotlinVersion=1.7.21 +kotlinVersion=1.8.21 kotlin.stdlib.default.dependency=false +kotlin.jvm.target.validation.mode=ignore