Build: Remove exclusion of kotlinx-coroutines-core in scripting-common

It breaks available-at feature used in MPP
This commit is contained in:
Vyacheslav Gerasimov
2020-08-10 19:59:29 +03:00
parent 8540f47c15
commit ad8709b2dc
+1 -1
View File
@@ -8,7 +8,7 @@ jvmTarget = "1.6"
dependencies {
compile(kotlinStdlib())
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core"))
compileOnly(project(":kotlin-reflect-api"))
testCompile(commonDep("junit"))
}