kmath/settings.gradle.kts

52 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-10-17 11:12:35 +03:00
val kotlinVersion = "1.6.0-RC"
val toolsVersion = "0.10.5"
2020-09-25 10:13:38 +03:00
plugins {
2021-08-05 14:56:29 +03:00
id("org.jetbrains.kotlinx.benchmark") version "0.3.1"
2021-10-17 11:12:35 +03:00
id("ru.mipt.npm.gradle.project") version toolsVersion
id("ru.mipt.npm.gradle.jvm") version toolsVersion
id("ru.mipt.npm.gradle.mpp") version toolsVersion
2021-05-08 14:10:57 +03:00
kotlin("multiplatform") version kotlinVersion
2021-03-31 15:39:34 +03:00
kotlin("plugin.allopen") version kotlinVersion
2020-09-25 10:13:38 +03:00
}
}
rootProject.name = "kmath"
2021-10-02 09:55:52 +03:00
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("VERSION_CATALOGS")
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",
2021-10-17 13:52:40 +03:00
":kmath-multik",
2021-08-16 09:55:03 +03:00
":kmath-optimization",
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",
)