1
0
mirror of https://github.com/chylex/IntelliJ-AceJump.git synced 2025-05-31 09:34:06 +02:00

switch to K2 compiler

This commit is contained in:
breandan 2023-02-14 00:21:43 -05:00
parent ba739501e8
commit c52f046a6f

View File

@ -51,9 +51,16 @@ tasks {
} }
} }
kotlin.jvmToolchain { kotlin {
run { jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(17)) run {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
sourceSets.all {
languageSettings.apply {
languageVersion = "2.0"
}
} }
} }