2020-11-21 10:56:07 +03:00
|
|
|
plugins {
|
2021-02-23 21:47:18 +03:00
|
|
|
id("ru.mipt.npm.gradle.jvm")
|
2020-11-21 10:56:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
val dataforgeVersion: String by rootProject.extra
|
|
|
|
val fxVersion: String by rootProject.extra
|
|
|
|
|
|
|
|
kscience{
|
|
|
|
useFx(ru.mipt.npm.gradle.FXModule.CONTROLS, version = fxVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":visionforge-solid"))
|
|
|
|
|
|
|
|
api("no.tornado:tornadofx:1.7.20")
|
|
|
|
|
2021-07-15 18:39:43 +03:00
|
|
|
api("org.fxyz3d:fxyz3d:0.5.4") {
|
2020-11-21 10:56:07 +03:00
|
|
|
exclude(module = "slf4j-simple")
|
|
|
|
}
|
2021-08-11 16:52:36 +03:00
|
|
|
|
2020-11-21 10:56:07 +03:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-javafx:${ru.mipt.npm.gradle.KScienceVersions.coroutinesVersion}")
|
|
|
|
|
|
|
|
implementation("eu.mihosoft.vrl.jcsg:jcsg:0.5.7") {
|
|
|
|
exclude(module = "slf4j-simple")
|
|
|
|
}
|
|
|
|
}
|