0cd29adcc7
the dependency on the coroutines library caused various problems like KT-30778, or stdlib/runtime version conflicts. The only function used was `runBlocking`, so this change replaces it with the internal implementation based on the similar internal thing from the stdlib. #KT-30778 fixed
17 lines
349 B
Kotlin
17 lines
349 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-scripting-jvm"))
|
|
compile(project(":kotlin-scripting-dependencies"))
|
|
compile(project(":kotlin-scripting-dependencies-maven"))
|
|
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { }
|
|
}
|