kmath/kmath-stat/build.gradle.kts

28 lines
512 B
Plaintext
Raw Permalink Normal View History

plugins {
2021-04-14 12:40:26 +03:00
kotlin("multiplatform")
id("ru.mipt.npm.gradle.common")
2021-07-16 21:12:14 +03:00
id("ru.mipt.npm.gradle.native")
}
2019-02-02 18:16:25 +03:00
2021-04-14 12:40:26 +03:00
kscience {
2021-04-01 18:18:54 +03:00
useAtomic()
}
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-coroutines"))
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 {
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
2021-01-30 20:23:15 +03:00
}