Changed language version to 1.6 as 1.5 is deprecrated
This commit is contained in:
parent
b6b7dabb50
commit
f3f70f1f93
1 changed files with 1 additions and 3 deletions
|
@ -14,7 +14,6 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
|
||||||
* This plugin does not enable any Kotlin target. To enable a target in a subproject, prefer applying specific Kotlin
|
* This plugin does not enable any Kotlin target. To enable a target in a subproject, prefer applying specific Kotlin
|
||||||
* target convention plugins.
|
* target convention plugins.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("buildsrc.conventions.base")
|
id("buildsrc.conventions.base")
|
||||||
kotlin("multiplatform")
|
kotlin("multiplatform")
|
||||||
|
@ -22,14 +21,13 @@ plugins {
|
||||||
id("org.jetbrains.kotlinx.kover")
|
id("org.jetbrains.kotlinx.kover")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
//jvmToolchain(11)
|
//jvmToolchain(11)
|
||||||
|
|
||||||
targets.configureEach {
|
targets.configureEach {
|
||||||
compilations.configureEach {
|
compilations.configureEach {
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
languageVersion = "1.5"
|
languageVersion = "1.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue