kmath/settings.gradle.kts

45 lines
1.1 KiB
Plaintext
Raw Normal View History

pluginManagement {
repositories {
maven("https://repo.kotlin.link")
mavenLocal()
2019-02-02 18:16:25 +03:00
gradlePluginPortal()
jcenter()
maven("https://dl.bintray.com/kotlin/kotlinx")
}
2020-09-25 10:13:38 +03:00
2021-04-14 12:40:26 +03:00
val toolsVersion = "0.9.5-dev"
val kotlinVersion = "1.5.0-M2"
2020-09-25 10:13:38 +03:00
plugins {
2021-04-14 12:40:26 +03:00
kotlin("multiplatform") version kotlinVersion
kotlin("jvm") version kotlinVersion
kotlin("plugin.allopen") version kotlinVersion
id("org.jetbrains.kotlinx.benchmark") version "0.3.0"
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
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",
2020-10-20 10:03:09 +03:00
":examples"
)