22 lines
478 B
Plaintext
22 lines
478 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
}
|
|
|
|
description = "Commons math binding for kmath"
|
|
|
|
kscience {
|
|
jvm()
|
|
jvmMain {
|
|
api(projects.kmathCore)
|
|
api(projects.kmathComplex)
|
|
api(projects.kmathCoroutines)
|
|
api(projects.kmathOptimization)
|
|
api(projects.kmathStat)
|
|
api(projects.kmathFunctions)
|
|
api("org.apache.commons:commons-math3:3.6.1")
|
|
}
|
|
}
|
|
|
|
readme {
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
|
} |