kmath/settings.gradle.kts

55 lines
1.2 KiB
Plaintext
Raw Normal View History

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()
}
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
}
}
rootProject.name = "kmath"
include(
2019-02-20 12:54:39 +03:00
":kmath-memory",
":kmath-complex",
2019-01-04 18:12:28 +03:00
":kmath-core",
":kmath-coroutines",
":kmath-functions",
2019-02-13 18:21:51 +03:00
":kmath-histograms",
":kmath-commons",
2019-12-08 15:48:25 +03:00
":kmath-viktor",
2020-10-28 09:16:21 +03:00
":kmath-stat",
":kmath-nd4j",
2019-06-21 12:34:04 +03:00
":kmath-dimensions",
":kmath-for-real",
2020-04-29 19:28:24 +03:00
":kmath-geometry",
2020-06-12 10:40:59 +03:00
":kmath-ast",
":kmath-ejml",
":kmath-kotlingrad",
2021-03-31 11:07:45 +03:00
":kmath-tensors",
2021-03-31 15:39:34 +03:00
":kmath-jupyter",
":kmath-symja",
2021-06-02 22:44:19 +03:00
":kmath-jafama",
2021-04-16 22:43:10 +03:00
":examples",
":benchmarks"
)
2021-06-26 00:36:01 +03:00
if(System.getProperty("os.name") == "Linux"){
include(":kmath-noa")
}