I can't get IntelliJ IDEA to recognize ktor after importing the project through the kobalt plugin. I already did the init, assemble, and compile steps before trying to import the project in IDEA. No folders appear in the project window. Am I missing something? I've used kobalt before on another project and it worked beautifully, just not here. Here's my build.kt file:
I can't get IntelliJ IDEA to recognize ktor after importing the project through the kobalt plugin. I already did the init, assemble, and compile steps before trying to import the project in IDEA. No folders appear in the project window. Am I missing something? I've used kobalt before on another project and it worked beautifully, just not here. Here's my build.kt file:
import com.beust.kobalt. import com.beust.kobalt.plugin.packaging. import com.beust.kobalt.plugin.application. import com.beust.kobalt.plugin.kotlin.
val bs = buildScript { repos("https://dl.bintray.com/kotlin/ktor/") }
val p = project { name = "SimpleWebAPI" group = "com.example" artifactId = name version = "0.1"
}