kmath/kmath-stat/build.gradle.kts

27 lines
492 B
Plaintext
Raw Normal View History

plugins {
2022-07-29 15:58:02 +03:00
id("space.kscience.gradle.mpp")
2022-09-04 20:59:30 +03:00
}
kscience{
native()
}
2019-02-02 18:16:25 +03:00
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-coroutines"))
2022-06-12 15:16:40 +03:00
implementation(npmlibs.atomicfu)
2019-02-02 18:16:25 +03:00
}
}
jvmMain {
dependencies {
api("org.apache.commons:commons-rng-sampling:1.3")
api("org.apache.commons:commons-rng-simple:1.3")
}
}
}
2021-01-30 20:23:15 +03:00
2021-03-16 20:56:20 +03:00
readme {
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
2021-01-30 20:23:15 +03:00
}