Re-add javafx media,graphics dependnecies to fix GUI (#4107)

This commit is contained in:
Chris Stewart 2022-02-18 11:39:24 -06:00 committed by GitHub
parent 5777ec1c31
commit 666885bc11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,8 +133,13 @@ object Deps {
lazy val javaFxControls =
"org.openjfx" % s"javafx-controls" % V.javaFxV classifier osName withSources () withJavadoc ()
lazy val javaFxGraphics = "org.openjfx" % s"javafx-graphics" % V.javaFxV classifier osName withSources () withJavadoc ()
lazy val javaFxMedia = "org.openjfx" % s"javafx-media" % V.javaFxV classifier osName withSources () withJavadoc ()
lazy val javaFxDeps = List(javaFxBase,
javaFxControls)
javaFxControls,
javaFxGraphics,
javaFxMedia)
val breezeViz =
("org.scalanlp" %% "breeze-viz" % V.breezeV withSources () withJavadoc ())