2020-08-07 13:51:27 +00:00
|
|
|
description = "Extensions for using kotlin-result with kotlinx-coroutines."
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
`maven-publish`
|
|
|
|
kotlin("multiplatform")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
all {
|
|
|
|
languageSettings.apply {
|
2021-10-05 17:05:29 +00:00
|
|
|
optIn("kotlin.contracts.ExperimentalContracts")
|
2020-08-07 13:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
2020-08-28 15:19:39 +00:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.kotlinCoroutines}")
|
2023-01-06 02:21:26 +00:00
|
|
|
api(project(":kotlin-result"))
|
2020-08-07 13:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val commonTest by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-common"))
|
|
|
|
implementation(kotlin("test-annotations-common"))
|
2022-01-08 13:11:58 +00:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:${Versions.kotlinCoroutines}")
|
2020-08-07 13:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val jvmTest by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-junit"))
|
|
|
|
implementation(kotlin("test"))
|
|
|
|
}
|
|
|
|
}
|
2020-11-29 21:34:08 +00:00
|
|
|
|
|
|
|
val jsTest by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-js"))
|
|
|
|
}
|
|
|
|
}
|
2020-08-07 13:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-26 15:50:36 +00:00
|
|
|
publishing {
|
|
|
|
publications.withType<MavenPublication> {
|
|
|
|
pom {
|
|
|
|
description.set(project.description)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|