2020-09-20 12:36:48 +03:00
|
|
|
plugins {
|
2020-09-20 21:59:10 +03:00
|
|
|
id("ru.mipt.npm.jvm")
|
2020-09-20 12:36:48 +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"))
|
2021-01-06 17:01:37 +03:00
|
|
|
api(project(":kmath-complex"))
|
2019-04-26 21:36:28 +03:00
|
|
|
api(project(":kmath-coroutines"))
|
2020-10-28 09:16:21 +03:00
|
|
|
api(project(":kmath-stat"))
|
2020-10-27 17:57:49 +03:00
|
|
|
api(project(":kmath-functions"))
|
2019-01-13 10:42:53 +03:00
|
|
|
api("org.apache.commons:commons-math3:3.6.1")
|
2020-08-22 12:49:21 +03:00
|
|
|
}
|
2021-01-30 20:23:15 +03:00
|
|
|
|
|
|
|
readme{
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
|
|
|
}
|