kmath/kmath-commons/build.gradle.kts

12 lines
254 B
Plaintext
Raw Normal View History

plugins {
2019-08-24 09:00:04 +03:00
id("scientifik.jvm")
}
description = "Commons math binding for kmath"
dependencies {
api(project(":kmath-core"))
2019-04-26 21:36:28 +03:00
api(project(":kmath-coroutines"))
api(project(":kmath-prob"))
api("org.apache.commons:commons-math3:3.6.1")
2019-04-23 22:31:05 +03:00
}