2020-10-12 16:26:03 +03:00
|
|
|
plugins {
|
2021-02-21 16:13:40 +03:00
|
|
|
id("ru.mipt.npm.gradle.mpp")
|
2020-10-12 16:26:03 +03:00
|
|
|
}
|
2019-02-02 18:16:25 +03:00
|
|
|
|
2019-04-23 13:07:36 +03:00
|
|
|
kotlin.sourceSets {
|
2020-10-12 14:38:26 +03:00
|
|
|
all {
|
2020-11-10 15:01:26 +03:00
|
|
|
languageSettings.apply {
|
2020-10-12 14:38:26 +03:00
|
|
|
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
|
|
|
|
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
|
2020-12-02 06:49:47 +03:00
|
|
|
useExperimentalAnnotation("kotlinx.coroutines.ObsoleteCoroutinesApi")
|
2020-10-12 14:38:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-23 13:07:36 +03:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-coroutines"))
|
2019-02-02 18:16:25 +03:00
|
|
|
}
|
2019-04-23 13:07:36 +03:00
|
|
|
}
|
2020-09-08 12:40:47 +03:00
|
|
|
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
2020-05-22 21:24:20 +03:00
|
|
|
api("org.apache.commons:commons-rng-sampling:1.3")
|
|
|
|
api("org.apache.commons:commons-rng-simple:1.3")
|
|
|
|
}
|
|
|
|
}
|
2020-09-08 12:40:47 +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
|
|
|
|
}
|