2018-11-20 22:09:07 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://plugins.gradle.org/m2/")
|
2019-01-26 19:38:18 +03:00
|
|
|
//maven ("https://dl.bintray.com/kotlin/kotlin-eap")
|
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-01-04 18:12:28 +03:00
|
|
|
":benchmarks"
|
2018-11-20 22:09:07 +03:00
|
|
|
)
|