1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-18 09:34:04 +02:00

Update kotlin api to 2.0

This commit is contained in:
Alex Plate 2025-02-28 19:44:27 +02:00
parent ee1928c836
commit 830a708489
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -213,7 +213,7 @@ tasks {
jvmTarget = javaVersion jvmTarget = javaVersion
// See https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library // See https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
// For the list of bundled versions // For the list of bundled versions
apiVersion = "1.9" apiVersion = "2.0"
freeCompilerArgs = listOf( freeCompilerArgs = listOf(
"-Xjvm-default=all-compatibility", "-Xjvm-default=all-compatibility",
@ -229,7 +229,7 @@ tasks {
compileTestKotlin { compileTestKotlin {
kotlinOptions { kotlinOptions {
jvmTarget = javaVersion jvmTarget = javaVersion
apiVersion = "1.9" apiVersion = "2.0"
// Needed to compile the AceJump which uses kotlin beta // Needed to compile the AceJump which uses kotlin beta
// Without these two option compilation fails // Without these two option compilation fails