2019-02-02 18:16:25 +03:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
|
|
|
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.12.1")
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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" -> {
|
|
|
|
useModule("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.12.1")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
|
|
|
|
2018-12-11 17:25:55 +03:00
|
|
|
//enableFeaturePreview("GRADLE_METADATA")
|
2018-11-20 22:09:07 +03:00
|
|
|
|
|
|
|
rootProject.name = "kmath"
|
|
|
|
include(
|
2019-01-04 18:12:28 +03:00
|
|
|
":kmath-core",
|
|
|
|
":kmath-io",
|
|
|
|
":kmath-coroutines",
|
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-01-04 18:12:28 +03:00
|
|
|
":benchmarks"
|
2018-11-20 22:09:07 +03:00
|
|
|
)
|