kmath/settings.gradle.kts

42 lines
988 B
Plaintext
Raw Normal View History

pluginManagement {
2019-08-25 10:51:25 +03:00
plugins {
id("scientifik.mpp") version "0.2.5"
id("scientifik.jvm") version "0.2.5"
id("scientifik.atomic") version "0.2.5"
id("scientifik.publish") version "0.2.5"
2019-08-25 10:51:25 +03:00
}
repositories {
mavenLocal()
jcenter()
2019-02-02 18:16:25 +03:00
gradlePluginPortal()
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/mipt-npm/scientifik")
maven("https://dl.bintray.com/kotlin/kotlinx")
}
2019-08-25 10:51:25 +03:00
2019-02-02 18:16:25 +03:00
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"scientifik.mpp", "scientifik.publish" -> useModule("scientifik:gradle-tools:${requested.version}")
2019-02-02 18:16:25 +03:00
}
}
}
}
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",
2019-12-08 15:48:25 +03:00
":kmath-viktor",
":kmath-koma",
2019-04-23 21:36:25 +03:00
":kmath-prob",
2019-08-24 09:00:04 +03:00
":kmath-io",
":examples"
)