21 lines
279 B
Plaintext
21 lines
279 B
Plaintext
plugins {
|
|
kotlin("multiplatform") version "2.1.0"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
kotlin {
|
|
jvm()
|
|
mingwX64()
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation("io.ktor:ktor-client-core:3.1.1")
|
|
implementation("io.ktor:ktor-network:3.1.1")
|
|
}
|
|
}
|
|
}
|
|
} |