13 lines
302 B
Plaintext
13 lines
302 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
description = "Commons math binding for kmath"
|
|
|
|
dependencies {
|
|
api(project(":kmath-core"))
|
|
api("org.apache.commons:commons-math3:3.6.1")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
|
|
}
|