kmath/kmath-commons/build.gradle.kts

17 lines
400 B
Plaintext
Raw Normal View History

plugins {
2021-02-21 16:13:40 +03:00
id("ru.mipt.npm.gradle.jvm")
}
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"))
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
readme{
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
}