I am using Spring Boot 2, Spring Integration and k...
# spring
l
I am using Spring Boot 2, Spring Integration and kotlin. Got
Resource not found in classpath: kotlin/coroutines/coroutines.kotlin_builtins
No coroutines in m code What dependency I should add?
s
Hum strange, you should not ad any dependency, could you share a repro project ?
l
1 sec
https://github.com/Lewik/vr Trying to start server app from idea
s
I will have a look tomorrow morning
l
Strange
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
- not working
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
- working Sibling project works with
-jdk8
s
Maybe a corrupted ressource in your local repo
Hum, there is a lot of tricky points in your build: your are using the multipltform plugin, the exprimental serialization mechanism, also coroutines dependencies are included even if you said no usage in your code. I guess this is some kind of bug in IDEA integration.
I would suggest starting without coroutines and serialization plugin (not supported for now on Spring side BTW even if I plan to add support at some point)
I don't think your issue is linked to Spring even if your project is a Spring one
Maybe ask in #multiplatform
I would be interested to understand why it does not work but I have not the bandwidth to spend time on that.