88e31cd1ac
See: https://docs.gradle.org/current/userguide/sharing_build_logic_between_subprojects.html#sec:convention_plugins
25 lines
457 B
Plaintext
25 lines
457 B
Plaintext
plugins {
|
|
`maven-publish`
|
|
id("kotlin-conventions")
|
|
id("publish-conventions")
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation(libs.kotlin.coroutines.core)
|
|
api(project(":kotlin-result"))
|
|
}
|
|
}
|
|
|
|
commonTest {
|
|
dependencies {
|
|
implementation(libs.kotlin.coroutines.test)
|
|
}
|
|
}
|
|
}
|
|
}
|