2018-11-20 22:09:07 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2019-02-02 18:16:25 +03:00
|
|
|
gradlePluginPortal()
|
2020-11-01 21:08:55 +03:00
|
|
|
jcenter()
|
2019-05-31 13:03:00 +03:00
|
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
2020-09-20 22:39:27 +03:00
|
|
|
maven("https://dl.bintray.com/mipt-npm/kscience")
|
2020-04-03 22:29:23 +03:00
|
|
|
maven("https://dl.bintray.com/mipt-npm/dev")
|
2019-07-17 14:21:37 +03:00
|
|
|
maven("https://dl.bintray.com/kotlin/kotlinx")
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
2020-09-25 10:13:38 +03:00
|
|
|
|
2021-01-30 20:12:14 +03:00
|
|
|
val toolsVersion = "0.7.4"
|
2021-01-19 17:16:43 +03:00
|
|
|
val kotlinVersion = "1.4.30-RC"
|
2020-09-25 10:13:38 +03:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("kotlinx.benchmark") version "0.2.0-dev-20"
|
|
|
|
id("ru.mipt.npm.project") version toolsVersion
|
|
|
|
id("ru.mipt.npm.mpp") version toolsVersion
|
|
|
|
id("ru.mipt.npm.jvm") version toolsVersion
|
|
|
|
id("ru.mipt.npm.publish") version toolsVersion
|
2020-11-28 18:43:35 +03:00
|
|
|
kotlin("jvm") version kotlinVersion
|
2020-09-27 19:57:30 +03:00
|
|
|
kotlin("plugin.allopen") version kotlinVersion
|
2020-09-25 10:13:38 +03:00
|
|
|
}
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "kmath"
|
2020-10-12 16:26:03 +03:00
|
|
|
|
2018-11-20 22:09:07 +03:00
|
|
|
include(
|
2019-02-20 12:54:39 +03:00
|
|
|
":kmath-memory",
|
2019-01-04 18:12:28 +03:00
|
|
|
":kmath-core",
|
2020-01-12 10:49:42 +03:00
|
|
|
":kmath-functions",
|
2019-01-04 18:12:28 +03:00
|
|
|
":kmath-coroutines",
|
2019-02-13 18:21:51 +03:00
|
|
|
":kmath-histograms",
|
2019-01-13 10:42:53 +03:00
|
|
|
":kmath-commons",
|
2019-12-08 15:48:25 +03:00
|
|
|
":kmath-viktor",
|
2020-10-28 09:16:21 +03:00
|
|
|
":kmath-stat",
|
2020-09-27 23:01:59 +03:00
|
|
|
":kmath-nd4j",
|
2019-06-21 12:34:04 +03:00
|
|
|
":kmath-dimensions",
|
2019-07-14 18:22:22 +03:00
|
|
|
":kmath-for-real",
|
2020-04-29 19:28:24 +03:00
|
|
|
":kmath-geometry",
|
2020-06-12 10:40:59 +03:00
|
|
|
":kmath-ast",
|
2020-10-12 16:26:03 +03:00
|
|
|
":kmath-ejml",
|
2020-10-28 14:37:21 +03:00
|
|
|
":kmath-kotlingrad",
|
2020-10-20 10:03:09 +03:00
|
|
|
":examples"
|
2018-11-20 22:09:07 +03:00
|
|
|
)
|