2019-03-08 11:55:01 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2019-07-14 22:08:15 +03:00
|
|
|
mavenLocal()
|
2019-03-08 11:55:01 +03:00
|
|
|
jcenter()
|
|
|
|
gradlePluginPortal()
|
2019-07-21 18:21:13 +03:00
|
|
|
maven("https://kotlin.bintray.com/kotlinx")
|
2019-03-08 11:55:01 +03:00
|
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
2019-10-09 16:35:32 +03:00
|
|
|
maven("https://dl.bintray.com/mipt-npm/dataforge")
|
2019-06-30 14:35:54 +03:00
|
|
|
maven("https://dl.bintray.com/mipt-npm/scientifik")
|
2019-07-21 18:21:13 +03:00
|
|
|
maven("https://dl.bintray.com/mipt-npm/dev")
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
2019-06-30 14:35:54 +03:00
|
|
|
|
2019-03-08 11:55:01 +03:00
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
when (requested.id.id) {
|
2019-07-21 18:21:13 +03:00
|
|
|
"scientifik.mpp", "scientifik.publish", "scientifik.jvm", "scientifik.js" -> useModule("scientifik:gradle-tools:${requested.version}")
|
2019-06-30 14:35:54 +03:00
|
|
|
"org.openjfx.javafxplugin" -> useModule("org.openjfx:javafx-plugin:${requested.version}")
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-11 11:46:28 +03:00
|
|
|
//enableFeaturePreview("GRADLE_METADATA")
|
2019-03-08 11:55:01 +03:00
|
|
|
|
|
|
|
rootProject.name = "dataforge-vis"
|
2019-05-28 17:59:56 +03:00
|
|
|
|
2019-03-08 11:55:01 +03:00
|
|
|
include(
|
2020-05-16 19:26:28 +03:00
|
|
|
":ui",
|
|
|
|
":ui:react",
|
|
|
|
":ui:ring",
|
|
|
|
":ui:material",
|
|
|
|
":ui:bootstrap",
|
2019-03-08 11:55:01 +03:00
|
|
|
":dataforge-vis-common",
|
|
|
|
":dataforge-vis-spatial",
|
2019-08-04 11:02:36 +03:00
|
|
|
":dataforge-vis-spatial-gdml",
|
2019-12-24 14:14:10 +03:00
|
|
|
":demo:spatial-showcase",
|
2019-12-26 22:21:10 +03:00
|
|
|
":demo:gdml",
|
2020-03-23 22:19:52 +03:00
|
|
|
":demo:muon-monitor",
|
|
|
|
":playground"
|
2019-04-02 20:24:31 +03:00
|
|
|
)
|