2020-08-07 13:51:27 +00:00
|
|
|
plugins {
|
|
|
|
`maven-publish`
|
2024-03-02 23:29:17 +00:00
|
|
|
id("kotlin-conventions")
|
|
|
|
id("publish-conventions")
|
2020-08-07 13:51:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2024-03-02 23:29:17 +00:00
|
|
|
explicitApi()
|
2020-08-07 13:51:27 +00:00
|
|
|
|
2024-03-02 23:29:17 +00:00
|
|
|
sourceSets {
|
2023-11-28 15:50:44 +00:00
|
|
|
commonMain {
|
2020-08-07 13:51:27 +00:00
|
|
|
dependencies {
|
2023-03-20 01:20:22 +00:00
|
|
|
implementation(libs.kotlin.coroutines.core)
|
2023-01-06 02:21:26 +00:00
|
|
|
api(project(":kotlin-result"))
|
2020-08-07 13:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-28 15:50:44 +00:00
|
|
|
commonTest {
|
2020-08-07 13:51:27 +00:00
|
|
|
dependencies {
|
2023-03-20 01:20:22 +00:00
|
|
|
implementation(libs.kotlin.coroutines.test)
|
2020-08-07 13:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-26 15:50:36 +00:00
|
|
|
}
|
|
|
|
}
|