2018-11-20 22:09:07 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
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-06-08 16:25:51 +03:00
|
|
|
maven("https://dl.bintray.com/orangy/maven")
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
2019-02-02 18:16:25 +03:00
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
when (requested.id.id) {
|
2019-05-31 13:03:00 +03:00
|
|
|
"kotlinx-atomicfu" -> useModule("org.jetbrains.kotlinx:atomicfu-gradle-plugin:${requested.version}")
|
|
|
|
"kotlin-multiplatform" -> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
|
|
|
|
"kotlin2js" -> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
|
|
|
|
//"org.jetbrains.kotlin.frontend" -> useModule("org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.45")
|
2019-02-02 18:16:25 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
|
|
|
|
2019-02-22 13:52:35 +03:00
|
|
|
enableFeaturePreview("GRADLE_METADATA")
|
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",
|
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-01-21 10:22:37 +03:00
|
|
|
":kmath-koma",
|
2019-04-23 21:36:25 +03:00
|
|
|
":kmath-prob",
|
2019-06-08 14:26:44 +03:00
|
|
|
":examples"
|
2018-11-20 22:09:07 +03:00
|
|
|
)
|