forked from kscience/kmath
228b55f5ea
# Conflicts: # CHANGELOG.md # gradle.properties # kmath-core/src/commonMain/kotlin/kscience/kmath/linear/MatrixContext.kt # kmath-stat/build.gradle.kts
30 lines
707 B
Plaintext
30 lines
707 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
}
|
|
|
|
kotlin.sourceSets {
|
|
all {
|
|
languageSettings.apply {
|
|
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
|
|
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
|
|
useExperimentalAnnotation("kotlinx.coroutines.ObsoleteCoroutinesApi")
|
|
}
|
|
}
|
|
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-coroutines"))
|
|
}
|
|
}
|
|
|
|
jvmMain {
|
|
dependencies {
|
|
api("org.apache.commons:commons-rng-sampling:1.3")
|
|
api("org.apache.commons:commons-rng-simple:1.3")
|
|
}
|
|
}
|
|
}
|
|
|
|
readme{
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
|
} |