kmath/kmath-commons/build.gradle.kts

19 lines
448 B
Plaintext
Raw Permalink Normal View History

plugins {
2022-09-04 20:59:30 +03:00
id("space.kscience.gradle.jvm")
}
2021-04-21 15:46:02 +03:00
description = "Commons math binding for kmath"
dependencies {
api(project(":kmath-core"))
api(project(":kmath-complex"))
2019-04-26 21:36:28 +03:00
api(project(":kmath-coroutines"))
2021-08-16 09:55:03 +03:00
api(project(":kmath-optimization"))
2020-10-28 09:16:21 +03:00
api(project(":kmath-stat"))
2020-10-27 17:57:49 +03:00
api(project(":kmath-functions"))
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
}