kmath/settings.gradle.kts

44 lines
1.1 KiB
Plaintext
Raw Normal View History

pluginManagement {
2020-09-20 22:25:50 +03:00
val toolsVersion = "0.6.0"
2020-05-06 10:50:08 +03:00
2019-08-25 10:51:25 +03:00
plugins {
id("kotlinx.benchmark") version "0.2.0-dev-20"
2020-09-20 22:25:50 +03:00
id("ru.mipt.npm.base") version toolsVersion
id("ru.mipt.npm.mpp") version toolsVersion
id("ru.mipt.npm.jvm") version toolsVersion
id("ru.mipt.npm.publish") version toolsVersion
2020-09-20 22:25:50 +03:00
kotlin("plugin.allopen")
2019-08-25 10:51:25 +03:00
}
repositories {
mavenLocal()
jcenter()
2019-02-02 18:16:25 +03:00
gradlePluginPortal()
maven("https://dl.bintray.com/kotlin/kotlin-eap")
2020-09-20 22:39:27 +03:00
maven("https://dl.bintray.com/mipt-npm/kscience")
2020-04-03 22:29:23 +03:00
maven("https://dl.bintray.com/mipt-npm/dev")
maven("https://dl.bintray.com/kotlin/kotlinx")
maven("https://dl.bintray.com/kotlin/kotlin-dev/")
}
}
rootProject.name = "kmath"
include(
2019-02-20 12:54:39 +03:00
":kmath-memory",
2019-01-04 18:12:28 +03:00
":kmath-core",
2020-01-12 10:49:42 +03:00
":kmath-functions",
2019-02-09 10:44:28 +03:00
// ":kmath-io",
2019-01-04 18:12:28 +03:00
":kmath-coroutines",
2019-02-13 18:21:51 +03:00
":kmath-histograms",
":kmath-commons",
2019-12-08 15:48:25 +03:00
":kmath-viktor",
":kmath-koma",
2019-04-23 21:36:25 +03:00
":kmath-prob",
2019-08-24 09:00:04 +03:00
":kmath-io",
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",
":examples"
)