I want to build a ktor based file and I got the compile error, but I don't have a clue what's wrong.
compile error:
Could not resolve org.jetbrains:kotlin-css-jvm:1.0.0-pre.31-kotlin-1.2.41
these are my dependencies:
dependencies {
implementation("io.ktor:ktor-server-core:$ktor_version")
implementation("io.ktor:ktor-server-netty:$ktor_version")
implementation("ch.qos.logback:logback-classic:$logback_version")
testImplementation("io.ktor:ktor-server-tests:$ktor_version")
implementation("org.jetbrains:kotlin-css-jvm:1.0.0-pre.31-kotlin-1.2.41")
implementation("io.ktor:ktor-auth:$ktor_version")
implementation("io.ktor:ktor-gson:$ktor_version")
implementation("org.litote.kmongo:kmongo:4.0.2")
implementation("org.litote.kmongo:kmongo-coroutine:4.0.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7")
implementation("commons-codec:commons-codec:1.14")
implementation("io.ktor:ktor-network-tls:$ktor_version")
implementation("io.ktor:ktor-freemarker:$ktor_version")
}