kmath/settings.gradle.kts

34 lines
829 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-04-17 12:24:06 +03:00
// Just hardcode version here,
// because anyway different submodules cannot use different versions
useModule("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.12.1")
2019-04-07 09:18:06 +03:00
}
2019-02-02 18:16:25 +03:00
}
}
}
}
2019-02-22 13:52:35 +03:00
enableFeaturePreview("GRADLE_METADATA")
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",
":kmath-commons",
":kmath-koma",
2019-02-02 18:16:25 +03:00
":kmath-sequential",
2019-02-13 14:55:44 +03:00
":benchmarks"
)