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