2021-11-23 14:08:31 +03:00
|
|
|
plugins {
|
2022-06-07 12:44:30 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2021-11-23 14:08:31 +03:00
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
val dataforgeVersion: String by rootProject.extra
|
2021-11-27 22:03:10 +03:00
|
|
|
val kmathVersion: String by rootProject.extra
|
2021-12-14 18:47:54 +03:00
|
|
|
val tablesVersion: String by rootProject.extra
|
2021-11-23 14:08:31 +03:00
|
|
|
|
|
|
|
kotlin.sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2021-12-18 23:08:03 +03:00
|
|
|
api(projects.numass.numassDataModel)
|
2021-12-07 18:52:48 +03:00
|
|
|
api("space.kscience:dataforge-io:$dataforgeVersion")
|
2021-12-14 18:47:54 +03:00
|
|
|
api("space.kscience:tables-kt:$tablesVersion")
|
2021-12-18 23:08:03 +03:00
|
|
|
api("space.kscience:kmath-histograms:$kmathVersion")
|
2021-11-27 22:03:10 +03:00
|
|
|
api("space.kscience:kmath-complex:$kmathVersion")
|
|
|
|
api("space.kscience:kmath-stat:$kmathVersion")
|
2021-11-23 14:08:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 12:44:30 +03:00
|
|
|
//kscience{
|
|
|
|
// useAtomic()
|
|
|
|
//}
|
2021-12-18 23:08:03 +03:00
|
|
|
|
2021-11-23 14:08:31 +03:00
|
|
|
|