diff --git a/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt b/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt index e689e31c99..14b9c62991 100644 --- a/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt +++ b/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt @@ -87,23 +87,6 @@ abstract class ComposePlugin : Plugin { disableSignatureClashCheck(project) } - - // TODO: remove this (https://youtrack.jetbrains.com/issue/COMPOSE-939) - // we substitute the coroutines version for web targets in user projects, - // so they don't need to do that manually - project.configurations.all { - val isWeb = it.name.startsWith("wasmJs") || it.name.startsWith("js") - if (isWeb) { - it.resolutionStrategy.eachDependency { - if (it.requested.group.startsWith("org.jetbrains.kotlinx") && - it.requested.name.startsWith("kotlinx-coroutines-")) { - if (it.requested.version?.startsWith("1.7") == true) { - it.useVersion("1.8.0-RC2") - } - } - } - } - } } private fun disableSignatureClashCheck(project: Project) {