update dependencies

This commit is contained in:
2023-04-18 03:17:04 +06:00
parent 8fdf715419
commit 4e3c186952
2 changed files with 8 additions and 4 deletions

View File

@@ -12,6 +12,10 @@ plugins {
id "org.jetbrains.kotlin.multiplatform"
}
repositories {
maven { url "https://maven.pkg.jetbrains.space/public/p/ktor/eap/" }
}
kotlin {
def hostOs = System.getProperty("os.name")
@@ -38,7 +42,7 @@ kotlin {
else if (isMingwX64) engine = "winhttp"
else throw new GradleException("Host OS is not supported in Kotlin/Native.")
api "io.ktor:ktor-client-$engine:$ktor_version"
api "io.ktor:ktor-client-$engine:2.3.0-eap-638"
}
}
}