diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f87d5ae2..0e4e748a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -26,7 +26,6 @@ nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "2.0.0 kotlin-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "serialization" } kotlin-serialization-json-okio = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json-okio", version.ref = "serialization" } kotlin-benchmark = { group = "org.jetbrains.kotlinx", name = "kotlinx-benchmark-runtime", version.ref = "benchmark" } -kotlin-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version = "1.10.1" } kotest-assertions-core = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" } kotest-framework-engine = { module = "io.kotest:kotest-framework-engine", version.ref = "kotest" } kotest-runner-junit5 = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" } diff --git a/json-schema-validator/build.gradle.kts b/json-schema-validator/build.gradle.kts index 88fc1e96..aa741626 100644 --- a/json-schema-validator/build.gradle.kts +++ b/json-schema-validator/build.gradle.kts @@ -105,13 +105,6 @@ kotlin { commonTest { dependencies { implementation(libs.kotest.assertions.core) - implementation(libs.kotlin.coroutines.core.get().toString()) { - // see "https://kotlinlang.slack.com/archives/CDFP59223/p1736191408326039?thread_ts=1734964013.996149&cid=CDFP59223" - because( - "there is a problem with linkage related to changes in kotlin 2.1.0: " + - "wasmJs tests in browser does not work without updating coroutines to the version compiled with 2.1.0", - ) - } implementation(libs.kotest.framework.engine) implementation(kotlin("test-common")) implementation(kotlin("test-annotations-common")) diff --git a/test-suites/build.gradle.kts b/test-suites/build.gradle.kts index eb9d6a85..b81a624c 100644 --- a/test-suites/build.gradle.kts +++ b/test-suites/build.gradle.kts @@ -60,14 +60,6 @@ kotlin { implementation(kotlin("test-annotations-common")) implementation(libs.okio.common) implementation(libs.kotlin.serialization.json.okio) - - implementation(libs.kotlin.coroutines.core.get().toString()) { - // see "https://kotlinlang.slack.com/archives/CDFP59223/p1736191408326039?thread_ts=1734964013.996149&cid=CDFP59223" - because( - "there is a problem with linkage related to changes in kotlin 2.1.0: " + - "wasmJs tests in browser does not work without updating coroutines to the version compiled with 2.1.0", - ) - } } } jsTest {