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 * 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"
} }
} }
} }