2020-10-12 16:26:03 +03:00
|
|
|
plugins {
|
2022-07-29 15:58:02 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2022-09-04 20:59:30 +03:00
|
|
|
}
|
|
|
|
|
2024-03-27 09:11:12 +03:00
|
|
|
kscience {
|
2023-02-03 19:32:53 +03:00
|
|
|
jvm()
|
|
|
|
js()
|
2022-09-04 20:59:30 +03:00
|
|
|
native()
|
2024-02-17 21:32:26 +03:00
|
|
|
wasm()
|
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 {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2023-04-09 10:55:58 +03:00
|
|
|
api(projects.kmathCoroutines)
|
2023-04-07 19:55:34 +03:00
|
|
|
//implementation(spclibs.atomicfu)
|
2019-02-02 18:16:25 +03:00
|
|
|
}
|
2019-04-23 13:07:36 +03:00
|
|
|
}
|
2020-09-08 12:40:47 +03:00
|
|
|
|
2023-02-03 19:32:53 +03:00
|
|
|
getByName("jvmMain") {
|
2020-09-08 12:40:47 +03:00
|
|
|
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 {
|
2022-07-29 15:58:02 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
2021-01-30 20:23:15 +03:00
|
|
|
}
|