Etienne
02/24/2020, 7:13 PMktor-client-curl
in their project? I’m running into linker issues, and would like to compare notes / build scripts.
(Keeping it short since I posted a long description in the #ktor channel, with no answers for now.)jk2018
02/24/2020, 10:00 PMjk2018
02/24/2020, 10:01 PMrepositories {
mavenCentral()
maven("<https://plugins.gradle.org/m2/>")
maven("<https://dl.bintray.com/kotlin/kotlin-dev>")
maven("<https://dl.bintray.com/kotlin/kotlin-eap>")
maven("<https://kotlin.bintray.com/kotlinx>")
maven("<https://dl.bintray.com/kotlin/ktor>")
jcenter()
}
plugins {
kotlin("multiplatform") version "1.3.61"
}
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.3.2-1.3.60")
implementation("com.soywiz.korlibs.klock:klock:1.8.6") // Common
implementation("com.benasher44:uuid:0.0.7") // Common
implementation("io.ktor:ktor-server-netty:1.3.0")
implementation("io.ktor:ktor-client-curl:1.3.0")
}
}
jk2018
02/24/2020, 10:02 PMEtienne
02/25/2020, 2:45 PMEtienne
02/25/2020, 2:46 PMEtienne
02/25/2020, 2:47 PM