I hit the same error as described here: <https://g...
# coroutines
p
I hit the same error as described here: https://github.com/Kotlin/kotlinx.coroutines/issues/1909 I am on 1.4 and I checked to make sure that I am using 1.3.9 coroutines. I then ran
./gradlew dependencies
and I saw this for the kotlin-scriptin-compiler-embeddable jar that I use:
Copy code
kotlinCompilerPluginClasspath
\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.4.0
     +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.4.0
     |    +--- org.jetbrains.kotlin:kotlin-scripting-common:1.4.0
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0
     |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0
     |    |    |    \--- org.jetbrains:annotations:13.0
     |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7
     |    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.0 (*)
     |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.71 -> 1.4.0
     |    +--- org.jetbrains.kotlin:kotlin-scripting-jvm:1.4.0
     |    |    +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.0
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 (*)
     |    |    \--- org.jetbrains.kotlin:kotlin-scripting-common:1.4.0 (*)
     |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 (*)
     |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7 (*)
     \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 (*)
Should I be worried about kotlinx-coroutines-core:1.3.7 being pulled in?