Skip to content

Commit d12eb45

Browse files
Update to Gradle 8 (#3966)
* Update Gradle to 8.5 and all the Gradle plugins where required * Migrate away from deprecated Gradle API * Migrate to jvmToolchain, use 11 as the main one * Apply workarounds for new Gradle constraints, mostly related to implicit dependencies * Fix a race in CoroutineScheduler.shutdown (exposed by toolchain update): * If the thread is in 'NEW' state, then 'isAlive: false' and 'join' returns immediately, meaning that there is a race between thread start and shutdown sequence that makes post-join assertion sporadically fail * Restructure our build scripts to use .kts conventions only * Get rid of the deprecated KGP target preset API * Use the default source-set hierarchy for MPP --------- Co-authored-by: Dmitry Khalanskiy <[email protected]>
1 parent 7bb0638 commit d12eb45

File tree

57 files changed

+1217
-1314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1217
-1314
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,13 @@ commonMain {
173173
}
174174
```
175175

176-
No more additional dependencies are needed, platform-specific artifacts will be resolved automatically via Gradle metadata available since Gradle 5.3.
177-
178176
Platform-specific dependencies are recommended to be used only for non-multiplatform projects that are compiled only for target platform.
179177

180178
#### JS
181179

182180
Kotlin/JS version of `kotlinx.coroutines` is published as
183181
[`kotlinx-coroutines-core-js`](https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.8.0-RC)
184-
(follow the link to get the dependency declaration snippet) and as [`kotlinx-coroutines-core`](https://www.npmjs.com/package/kotlinx-coroutines-core) NPM package.
182+
(follow the link to get the dependency declaration snippet).
185183

186184
#### Native
187185

benchmarks/build.gradle.kts

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
@file:Suppress("UnstableApiUsage")
66

7-
import me.champeau.jmh.*
87
import org.jetbrains.kotlin.gradle.tasks.*
8+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
99

1010
plugins {
1111
id("com.github.johnrengelman.shadow")
@@ -22,18 +22,18 @@ java {
2222
}
2323

2424
tasks.named<KotlinCompile>("compileJmhKotlin") {
25-
kotlinOptions {
26-
jvmTarget = "1.8"
27-
freeCompilerArgs += "-Xjvm-default=all"
25+
compilerOptions {
26+
jvmTarget = JvmTarget.JVM_1_8
27+
freeCompilerArgs.add("-Xjvm-default=all")
2828
}
2929
}
3030

3131
val jmhJarTask = tasks.named<Jar>("jmhJar") {
32-
archiveBaseName by "benchmarks"
33-
archiveClassifier by null
34-
archiveVersion by null
32+
archiveBaseName = "benchmarks"
33+
archiveClassifier = null
34+
archiveVersion = null
3535
archiveVersion.convention(null as String?)
36-
destinationDirectory.set(file("$rootDir"))
36+
destinationDirectory = rootDir
3737
}
3838

3939
tasks {

0 commit comments

Comments
 (0)