From 8fd3166199e9e8e1b522aeed379679a9c622202a Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Thu, 22 Feb 2024 21:23:36 +0100 Subject: [PATCH] Build: Remove coroutines-core dependency from backend.native:tests The dependency on kotlinx-coroutines-core seems redundant and always overridden by another dependency. --- kotlin-native/backend.native/tests/build.gradle | 4 ---- 1 file changed, 4 deletions(-) diff --git a/kotlin-native/backend.native/tests/build.gradle b/kotlin-native/backend.native/tests/build.gradle index ddb2e21f553..332bd091bd2 100644 --- a/kotlin-native/backend.native/tests/build.gradle +++ b/kotlin-native/backend.native/tests/build.gradle @@ -37,10 +37,6 @@ configurations { api.extendsFrom nopPluginApi } -dependencies { - // TODO: upgrade coroutines to common version - api RepoDependencies.commonDependency(project, "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7") -} ext.testOutputRoot = rootProject.file("test.output").absolutePath ext.platformManager = project.project(":kotlin-native").platformManager