kmath/kmath-commons/build.gradle.kts

13 lines
292 B
Plaintext
Raw Normal View History

plugins {
id("ru.mipt.npm.jvm")
}
description = "Commons math binding for kmath"
dependencies {
api(project(":kmath-core"))
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")
}