kmath/kmath-commons/build.gradle.kts
2021-01-06 21:01:37 +07:00

14 lines
327 B
Plaintext

plugins {
id("ru.mipt.npm.jvm")
}
description = "Commons math binding for kmath"
dependencies {
api(project(":kmath-core"))
api(project(":kmath-complex"))
api(project(":kmath-coroutines"))
api(project(":kmath-stat"))
api(project(":kmath-functions"))
api("org.apache.commons:commons-math3:3.6.1")
}