kmath/kmath-coroutines/build.gradle.kts

23 lines
691 B
Plaintext
Raw Normal View History

2021-02-21 16:13:40 +03:00
plugins { id("ru.mipt.npm.gradle.mpp") }
2019-02-12 14:14:16 +03:00
kotlin.sourceSets {
all {
with(languageSettings) {
useExperimentalAnnotation("kotlinx.coroutines.InternalCoroutinesApi")
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
}
}
commonMain {
dependencies {
api(project(":kmath-core"))
2021-01-20 11:07:12 +03:00
api(project(":kmath-complex"))
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${ru.mipt.npm.gradle.KScienceVersions.coroutinesVersion}")
2019-02-12 14:14:16 +03:00
}
}
2019-02-12 14:14:16 +03:00
}
2021-01-30 20:23:15 +03:00
readme{
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
}