[Kotlin][Multiplatform] Add missing JVM dependency (#10051)

This dependency was accidentally removed in PR #9755 where we switched
from `build.gradle` to `build.gradle.kts`.
This commit is contained in:
Piotr Krzemiński
2021-07-29 12:01:44 +02:00
committed by GitHub
parent d18ee5459c
commit b1a009803e
2 changed files with 2 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ kotlin {
val jvmMain by getting {
dependencies {
implementation(kotlin("stdlib-jdk7"))
implementation("io.ktor:ktor-client-cio-jvm:$ktor_version")
}
}

View File

@@ -46,6 +46,7 @@ kotlin {
val jvmMain by getting {
dependencies {
implementation(kotlin("stdlib-jdk7"))
implementation("io.ktor:ktor-client-cio-jvm:$ktor_version")
}
}