kmath/kmath-coroutines/build.gradle.kts

25 lines
726 B
Plaintext
Raw Normal View History

2021-04-14 12:40:26 +03:00
plugins {
kotlin("multiplatform")
id("ru.mipt.npm.gradle.common")}
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
2021-03-16 20:56:20 +03:00
readme {
2021-01-30 20:23:15 +03:00
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
}