kmath/kmath-commons/build.gradle.kts

22 lines
478 B
Plaintext
Raw Normal View History

plugins {
2023-10-31 14:05:17 +03:00
id("space.kscience.gradle.mpp")
}
2021-04-21 15:46:02 +03:00
description = "Commons math binding for kmath"
2023-10-31 14:05:17 +03:00
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")
}
}
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
}