visionforge/visionforge-fx/build.gradle.kts

26 lines
695 B
Plaintext
Raw Permalink Normal View History

2020-11-21 10:56:07 +03:00
plugins {
2022-08-12 22:16:06 +03:00
id("space.kscience.gradle.jvm")
2020-11-21 10:56:07 +03:00
}
val dataforgeVersion: String by rootProject.extra
val fxVersion: String by rootProject.extra
kscience{
2022-08-12 22:16:06 +03:00
useFx(space.kscience.gradle.FXModule.CONTROLS, version = fxVersion)
2020-11-21 10:56:07 +03:00
}
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")
}
2022-08-12 22:16:06 +03:00
api("org.jetbrains.kotlinx:kotlinx-coroutines-javafx:${space.kscience.gradle.KScienceVersions.coroutinesVersion}")
2020-11-21 10:56:07 +03:00
implementation("eu.mihosoft.vrl.jcsg:jcsg:0.5.7") {
exclude(module = "slf4j-simple")
}
2022-01-07 12:29:43 +03:00
}
readme{
2022-08-12 22:16:06 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
2020-11-21 10:56:07 +03:00
}