2021-03-23 18:13:35 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2018-2021 KMath contributors.
|
|
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
|
|
*/
|
|
|
|
|
2018-11-20 22:09:07 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2021-03-08 21:03:48 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
mavenLocal()
|
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")
|
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-03-08 21:03:48 +03:00
|
|
|
val toolsVersion = "0.9.1"
|
|
|
|
val kotlinVersion = "1.4.31"
|
2020-09-25 10:13:38 +03:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("kotlinx.benchmark") version "0.2.0-dev-20"
|
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
|
|
|
|
id("ru.mipt.npm.gradle.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",
|
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",
|
2020-10-20 10:03:09 +03:00
|
|
|
":examples"
|
2018-11-20 22:09:07 +03:00
|
|
|
)
|