Hello there! I have a pain in my ass. i use the ko...
# coroutines
e
Hello there! I have a pain in my ass. i use the kotlin 1.3.72 (yeah, i know the old one). and spring. i try to run test that invokes code with coroutines
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5
Copy code
private val fjp = ForkJoinPool().asCoroutineDispatcher()
...
runBlocking(fjp) {
            myCollection.forEach {
                launch { processEveryone(...) }
            }
}
and ForkJoinPool().asCoroutineDispatcher() throws
java.lang.ClassNotFoundException: kotlin.coroutines.AbstractCoroutineContextKey
i’ve found only two tickets and both of them have been closed because of versions incompatibility. but my versions should be compatible… can you help?