Update ktor in example project to 1.5.4

This commit is contained in:
Michael Bull 2021-05-05 13:46:04 +01:00
parent 47f13a0d0f
commit eb7d0461d1
2 changed files with 1 additions and 6 deletions

View File

@ -3,7 +3,7 @@ object Versions {
const val kotlin = "1.4.32"
const val kotlinBenchmark = "0.2.0-dev-20"
const val kotlinCoroutines = "1.4.3"
const val ktor = "1.5.1"
const val ktor = "1.5.4"
const val logback = "1.2.3"
const val versionsPlugin = "0.38.0"
}

View File

@ -9,11 +9,6 @@ application {
mainClass.set("io.ktor.server.netty.EngineMain")
}
repositories {
maven(url = "http://dl.bintray.com/kotlin/ktor")
maven(url = "https://dl.bintray.com/kotlin/kotlinx")
}
dependencies {
implementation(project(":kotlin-result"))
implementation(kotlin("stdlib-jdk8"))