2019-01-13 10:42:53 +03:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
}
|
|
|
|
|
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-02-15 20:00:42 +03:00
|
|
|
api(project(":kmath-sequential"))
|
2019-01-13 10:42:53 +03:00
|
|
|
api("org.apache.commons:commons-math3:3.6.1")
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
|
|
|
|
}
|