File tree 1 file changed +1
-9
lines changed
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
5
5
import org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode
6
6
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
7
7
import org.jreleaser.model.Active
8
- import org.gradle.jvm.toolchain.JavaLanguageVersion
9
8
10
9
plugins {
11
10
alias(libs.plugins.kotlin.multiplatform)
@@ -197,10 +196,7 @@ kotlin {
197
196
198
197
explicitApi = ExplicitApiMode .Strict
199
198
200
- jvmToolchain {
201
- languageVersion = JavaLanguageVersion .of(17 )
202
- }
203
-
199
+ jvmToolchain(21 )
204
200
sourceSets {
205
201
commonMain {
206
202
kotlin.srcDir(generateLibVersionTask.map { it.sourcesDir })
@@ -212,7 +208,6 @@ kotlin {
212
208
api(libs.ktor.server.websockets)
213
209
214
210
implementation(libs.kotlin.logging)
215
- implementation(libs.kotlin.reflect)
216
211
}
217
212
}
218
213
@@ -223,7 +218,6 @@ kotlin {
223
218
implementation(libs.kotlinx.coroutines.test)
224
219
implementation(libs.kotlinx.coroutines.debug)
225
220
implementation(libs.kotest.assertions.json)
226
- implementation(libs.kotlin.reflect)
227
221
}
228
222
}
229
223
@@ -235,5 +229,3 @@ kotlin {
235
229
}
236
230
}
237
231
}
238
-
239
-
You can’t perform that action at this time.
0 commit comments