visionforge/settings.gradle.kts

45 lines
1.5 KiB
Plaintext
Raw Normal View History

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()
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")
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) {
"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(
":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
)
2019-06-02 20:32:31 +03:00
//if(file("../dataforge-core").exists()) {
// includeBuild("../dataforge-core"){
// dependencySubstitution {
// //substitute(module("hep.dataforge:dataforge-output")).with(project(":dataforge-output"))
// substitute(module("hep.dataforge:dataforge-output-jvm")).with(project(":dataforge-output"))
// substitute(module("hep.dataforge:dataforge-output-js")).with(project(":dataforge-output"))
2019-06-02 20:32:31 +03:00
// }
// }
//}