forked from kscience/kmath
31 lines
683 B
Plaintext
31 lines
683 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
//maven ("https://dl.bintray.com/kotlin/kotlin-eap")
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
when (requested.id.id) {
|
|
"kotlinx-atomicfu" -> {
|
|
useModule("org.jetbrains.kotlinx:atomicfu-gradle-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//enableFeaturePreview("GRADLE_METADATA")
|
|
|
|
rootProject.name = "kmath"
|
|
include(
|
|
":kmath-core",
|
|
// ":kmath-io",
|
|
":kmath-coroutines",
|
|
":kmath-histograms",
|
|
":kmath-commons",
|
|
":kmath-koma",
|
|
":kmath-sequential",
|
|
":benchmarks"
|
|
)
|