Hi all. I'm trying to run the ktor simple hello wo...
# ktor
t
Hi all. I'm trying to run the ktor simple hello world example found in the project docs using JDK9, Kobalt & latest IDEA. And while I can build the project with
./kobaltw compile
, when I try to run it from IDEA I get the following error:
Copy code
Error occurred during initialization of boot layer
java.lang.module.ResolutionException: Modules kotlin.stdlib.jre8 and kotlin.stdlib export package kotlin.collections to module netty.common
My deps are the following:
Copy code
"org.jetbrains.kotlin:kotlin-runtime:1.2.0",
          "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.0",
          "io.ktor:ktor-server-core:0.9.1-alpha-8",
          "io.ktor:ktor-server-netty:0.9.1-alpha-8"
Any ideas?