kmath/settings.gradle.kts

45 lines
1.2 KiB
Plaintext
Raw Normal View History

pluginManagement {
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/")
}
2020-09-25 10:13:38 +03:00
2020-10-13 20:34:17 +03:00
val toolsVersion = "0.6.3-dev-1.4.20-M1"
2020-09-27 19:57:30 +03:00
val kotlinVersion = "1.4.20-M1"
2020-09-25 10:13:38 +03:00
plugins {
id("kotlinx.benchmark") version "0.2.0-dev-20"
id("ru.mipt.npm.project") 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-27 19:57:30 +03:00
kotlin("jvm") version kotlinVersion
kotlin("plugin.allopen") version kotlinVersion
2020-09-25 10:13:38 +03:00
}
}
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",
2019-04-23 21:36:25 +03:00
":kmath-prob",
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",
":kmath-ejml"
)