52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
pluginManagement {
|
|
val kotlinVersion = "1.4.21"
|
|
val toolsVersion = "0.7.1"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
gradlePluginPortal()
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
|
maven("https://dl.bintray.com/kotlin/kotlinx")
|
|
maven("https://dl.bintray.com/mipt-npm/dataforge")
|
|
maven("https://dl.bintray.com/mipt-npm/kscience")
|
|
maven("https://dl.bintray.com/mipt-npm/dev")
|
|
}
|
|
|
|
plugins {
|
|
id("ru.mipt.npm.project") version toolsVersion
|
|
id("ru.mipt.npm.mpp") version toolsVersion
|
|
id("ru.mipt.npm.jvm") version toolsVersion
|
|
id("ru.mipt.npm.js") version toolsVersion
|
|
id("ru.mipt.npm.publish") version toolsVersion
|
|
kotlin("jvm") version kotlinVersion
|
|
kotlin("js") version kotlinVersion
|
|
kotlin("multiplatform") version kotlinVersion
|
|
}
|
|
}
|
|
|
|
//enableFeaturePreview("GRADLE_METADATA")
|
|
|
|
rootProject.name = "visionforge"
|
|
|
|
|
|
include(
|
|
// ":ui",
|
|
":ui:react",
|
|
":ui:ring",
|
|
// ":ui:material",
|
|
":ui:bootstrap",
|
|
":visionforge-core",
|
|
":visionforge-solid",
|
|
":visionforge-fx",
|
|
":visionforge-threejs",
|
|
":visionforge-threejs:visionforge-threejs-server",
|
|
":visionforge-gdml",
|
|
":visionforge-server",
|
|
":demo:spatial-showcase",
|
|
":demo:gdml",
|
|
":demo:muon-monitor",
|
|
":demo:sat-demo",
|
|
":playground"
|
|
)
|