46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
pluginManagement {
|
|
|
|
plugins {
|
|
id("scientifik.mpp") version "0.4.1"
|
|
id("scientifik.jvm") version "0.4.1"
|
|
id("scientifik.atomic") version "0.4.1"
|
|
id("scientifik.publish") version "0.4.1"
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
gradlePluginPortal()
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
|
maven("https://dl.bintray.com/mipt-npm/scientifik")
|
|
maven("https://dl.bintray.com/mipt-npm/dev")
|
|
maven("https://dl.bintray.com/kotlin/kotlinx")
|
|
}
|
|
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
when (requested.id.id) {
|
|
"scientifik.mpp", "scientifik.jvm", "scientifik.publish" -> useModule("scientifik:gradle-tools:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "kmath"
|
|
include(
|
|
":kmath-memory",
|
|
":kmath-core",
|
|
":kmath-functions",
|
|
// ":kmath-io",
|
|
":kmath-coroutines",
|
|
":kmath-histograms",
|
|
":kmath-commons",
|
|
":kmath-viktor",
|
|
":kmath-koma",
|
|
":kmath-prob",
|
|
":kmath-io",
|
|
":kmath-dimensions",
|
|
":kmath-for-real",
|
|
":examples"
|
|
)
|