2020-09-20 12:36:48 +03:00
|
|
|
plugins {
|
2021-04-14 12:40:26 +03:00
|
|
|
kotlin("jvm")
|
|
|
|
id("ru.mipt.npm.gradle.common")
|
2020-09-20 12:36:48 +03:00
|
|
|
}
|
2021-04-21 15:46:02 +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
|
|
|
|
2021-03-16 20:56:20 +03:00
|
|
|
readme {
|
2021-01-30 20:23:15 +03:00
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
|
|
|
}
|