File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
55import org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode
66import org.jetbrains.kotlin.gradle.dsl.JvmTarget
77import org.jreleaser.model.Active
8- import org.gradle.jvm.toolchain.JavaLanguageVersion
98
109plugins {
1110 alias(libs.plugins.kotlin.multiplatform)
@@ -197,10 +196,7 @@ kotlin {
197196
198197 explicitApi = ExplicitApiMode .Strict
199198
200- jvmToolchain {
201- languageVersion = JavaLanguageVersion .of(17 )
202- }
203-
199+ jvmToolchain(21 )
204200 sourceSets {
205201 commonMain {
206202 kotlin.srcDir(generateLibVersionTask.map { it.sourcesDir })
@@ -212,7 +208,6 @@ kotlin {
212208 api(libs.ktor.server.websockets)
213209
214210 implementation(libs.kotlin.logging)
215- implementation(libs.kotlin.reflect)
216211 }
217212 }
218213
@@ -223,7 +218,6 @@ kotlin {
223218 implementation(libs.kotlinx.coroutines.test)
224219 implementation(libs.kotlinx.coroutines.debug)
225220 implementation(libs.kotest.assertions.json)
226- implementation(libs.kotlin.reflect)
227221 }
228222 }
229223
@@ -235,5 +229,3 @@ kotlin {
235229 }
236230 }
237231}
238-
239-
You can’t perform that action at this time.
0 commit comments