kmath/settings.gradle.kts

31 lines
683 B
Plaintext
Raw Normal View History

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")
}
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
}
}
}
}
}
//enableFeaturePreview("GRADLE_METADATA")
rootProject.name = "kmath"
include(
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",
":kmath-commons",
":kmath-koma",
2019-02-02 18:16:25 +03:00
":kmath-sequential",
2019-02-13 14:55:44 +03:00
":benchmarks"
)