2018-11-20 22:09:07 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2021-05-22 20:08:49 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
2021-04-14 23:26:21 +03:00
|
|
|
mavenCentral()
|
2019-02-02 18:16:25 +03:00
|
|
|
gradlePluginPortal()
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
2020-09-25 10:13:38 +03:00
|
|
|
|
2021-06-19 16:52:26 +03:00
|
|
|
val toolsVersion = "0.10.0"
|
2021-05-08 14:10:57 +03:00
|
|
|
val kotlinVersion = "1.5.0"
|
2020-09-25 10:13:38 +03:00
|
|
|
|
|
|
|
plugins {
|
2021-02-21 16:13:40 +03:00
|
|
|
id("ru.mipt.npm.gradle.project") version toolsVersion
|
|
|
|
id("ru.mipt.npm.gradle.mpp") version toolsVersion
|
|
|
|
id("ru.mipt.npm.gradle.jvm") version toolsVersion
|
2021-05-08 14:10:57 +03:00
|
|
|
kotlin("multiplatform") version kotlinVersion
|
2021-03-31 15:39:34 +03:00
|
|
|
kotlin("jvm") version kotlinVersion
|
|
|
|
kotlin("plugin.allopen") version kotlinVersion
|
2021-05-22 20:08:49 +03:00
|
|
|
id("org.jetbrains.kotlinx.benchmark") version "0.3.1"
|
|
|
|
kotlin("jupyter.api") version "0.10.0-25"
|
2021-05-08 14:10:57 +03:00
|
|
|
|
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",
|
2021-01-06 17:01:37 +03:00
|
|
|
":kmath-complex",
|
2019-01-04 18:12:28 +03:00
|
|
|
":kmath-core",
|
|
|
|
":kmath-coroutines",
|
2021-01-06 17:01:37 +03:00
|
|
|
":kmath-functions",
|
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",
|
2021-03-31 11:07:45 +03:00
|
|
|
":kmath-tensors",
|
2021-03-31 15:39:34 +03:00
|
|
|
":kmath-jupyter",
|
2021-05-21 11:47:35 +03:00
|
|
|
":kmath-symja",
|
2021-06-02 22:44:19 +03:00
|
|
|
":kmath-jafama",
|
2021-04-16 22:43:10 +03:00
|
|
|
":examples",
|
|
|
|
":benchmarks"
|
2018-11-20 22:09:07 +03:00
|
|
|
)
|
2021-06-26 00:36:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
if(System.getProperty("os.name") == "Linux"){
|
|
|
|
include(":kmath-noa")
|
|
|
|
}
|