Changed language version to 1.6 as 1.5 is deprecrated

This commit is contained in:
Erik C. Thauvin 2023-09-13 13:13:23 -07:00
parent b6b7dabb50
commit f3f70f1f93

View file

@ -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
* target convention plugins.
*/
plugins {
id("buildsrc.conventions.base")
kotlin("multiplatform")
@ -22,14 +21,13 @@ plugins {
id("org.jetbrains.kotlinx.kover")
}
kotlin {
//jvmToolchain(11)
targets.configureEach {
compilations.configureEach {
kotlinOptions {
languageVersion = "1.5"
languageVersion = "1.6"
}
}
}