2018-11-20 22:09:07 +03:00
|
|
|
pluginManagement {
|
2019-08-25 10:51:25 +03:00
|
|
|
|
2020-05-06 10:50:08 +03:00
|
|
|
val toolsVersion = "0.5.0"
|
|
|
|
|
2019-08-25 10:51:25 +03:00
|
|
|
plugins {
|
2020-06-22 23:38:20 +03:00
|
|
|
id("kotlinx.benchmark") version "0.2.0-dev-8"
|
2020-05-06 10:50:08 +03:00
|
|
|
id("scientifik.mpp") version toolsVersion
|
|
|
|
id("scientifik.jvm") version toolsVersion
|
|
|
|
id("scientifik.atomic") version toolsVersion
|
|
|
|
id("scientifik.publish") version toolsVersion
|
2020-06-22 23:38:20 +03:00
|
|
|
kotlin("plugin.allopen") version "1.3.72"
|
2019-08-25 10:51:25 +03:00
|
|
|
}
|
|
|
|
|
2018-11-20 22:09:07 +03:00
|
|
|
repositories {
|
2019-07-17 14:21:37 +03:00
|
|
|
mavenLocal()
|
2019-05-31 13:03:00 +03:00
|
|
|
jcenter()
|
2019-02-02 18:16:25 +03:00
|
|
|
gradlePluginPortal()
|
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/mipt-npm/scientifik")
|
2020-04-03 22:29:23 +03:00
|
|
|
maven("https://dl.bintray.com/mipt-npm/dev")
|
2019-07-17 14:21:37 +03:00
|
|
|
maven("https://dl.bintray.com/kotlin/kotlinx")
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
2019-08-25 10:51:25 +03:00
|
|
|
|
2019-02-02 18:16:25 +03:00
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
when (requested.id.id) {
|
2020-05-06 10:50:08 +03:00
|
|
|
"scientifik.mpp", "scientifik.jvm", "scientifik.publish" -> useModule("scientifik:gradle-tools:$toolsVersion")
|
2019-02-02 18:16:25 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-20 22:09:07 +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",
|
2019-01-13 10:42:53 +03:00
|
|
|
":kmath-commons",
|
2019-12-08 15:48:25 +03:00
|
|
|
":kmath-viktor",
|
2019-01-21 10:22:37 +03:00
|
|
|
":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",
|
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",
|
2019-06-08 14:26:44 +03:00
|
|
|
":examples"
|
2018-11-20 22:09:07 +03:00
|
|
|
)
|