29 lines
688 B
Plaintext
29 lines
688 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
`maven-publish`
|
|
}
|
|
|
|
|
|
val dataforgeVersion: String by rootProject.extra
|
|
val kmathVersion: String by rootProject.extra
|
|
val tablesVersion: String by rootProject.extra
|
|
|
|
kotlin.sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(projects.numass.numassDataModel)
|
|
api("space.kscience:dataforge-io:$dataforgeVersion")
|
|
api("space.kscience:tables-kt:$tablesVersion")
|
|
api("space.kscience:kmath-histograms:$kmathVersion")
|
|
api("space.kscience:kmath-complex:$kmathVersion")
|
|
api("space.kscience:kmath-stat:$kmathVersion")
|
|
}
|
|
}
|
|
}
|
|
|
|
//kscience{
|
|
// useAtomic()
|
|
//}
|
|
|
|
|