2018-11-20 22:09:07 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2019-02-02 18:16:25 +03:00
|
|
|
gradlePluginPortal()
|
2019-01-26 19:38:18 +03:00
|
|
|
//maven ("https://dl.bintray.com/kotlin/kotlin-eap")
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
2019-02-02 18:16:25 +03:00
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
when (requested.id.id) {
|
|
|
|
"kotlinx-atomicfu" -> {
|
2019-02-03 13:07:35 +03:00
|
|
|
useModule("org.jetbrains.kotlinx:atomicfu-gradle-plugin:${requested.version}")
|
2019-02-02 18:16:25 +03:00
|
|
|
}
|
2019-04-07 09:18:06 +03:00
|
|
|
"kotlin-multiplatform" ->{
|
|
|
|
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
|
|
|
|
}
|
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-02-02 18:16:25 +03:00
|
|
|
":kmath-sequential",
|
2019-02-13 14:55:44 +03:00
|
|
|
":benchmarks"
|
2018-11-20 22:09:07 +03:00
|
|
|
)
|