2019-03-08 11:55:01 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
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}")
|
|
|
|
"kotlin-multiplatform" -> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
|
|
|
|
"kotlin2js" -> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
|
|
|
|
"org.jetbrains.kotlin.frontend" -> useModule("org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.45")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enableFeaturePreview("GRADLE_METADATA")
|
|
|
|
|
|
|
|
rootProject.name = "dataforge-vis"
|
2019-05-28 17:59:56 +03:00
|
|
|
|
2019-03-08 11:55:01 +03:00
|
|
|
include(
|
|
|
|
":dataforge-vis-common",
|
|
|
|
":dataforge-vis-spatial",
|
|
|
|
":dataforge-vis-spatial-fx",
|
|
|
|
":dataforge-vis-spatial-js"
|
2019-04-02 20:24:31 +03:00
|
|
|
)
|
|
|
|
|
2019-04-03 09:29:10 +03:00
|
|
|
if(file("../dataforge-core").exists()) {
|
2019-04-03 21:44:10 +03:00
|
|
|
includeBuild("../dataforge-core"){
|
|
|
|
dependencySubstitution {
|
|
|
|
substitute(module("hep.dataforge:dataforge-output")).with(project(":dataforge-output"))
|
|
|
|
}
|
|
|
|
}
|
2019-04-03 09:29:10 +03:00
|
|
|
}
|