diff --git a/solutions/RSync/build.sbt b/solutions/RSync/build.sbt
index 9d91e926184cff494f0da28135e2c8accbd4230d..693c450def119b07c8b5dbb12ed39859e95bb92b 100644
--- a/solutions/RSync/build.sbt
+++ b/solutions/RSync/build.sbt
@@ -1,7 +1,6 @@
 import sbt.Keys.organization
 
 val scrollVersion = "1.8"
-val scalaFxVersion = "8.0.144-R12"
 
 mainClass in (Compile, run) := Some("MainApp")
 
@@ -13,6 +12,5 @@ lazy val modelmanagementprovider = (project in file(".")).
     scalaVersion := "2.12.6",
     sbtVersion := "1.2.8",
     libraryDependencies ++= Seq(
-        "com.github.max-leuthaeuser" %% "scroll" % scrollVersion,
-        "org.scalafx" %% "scalafx" % scalaFxVersion)
+        "com.github.max-leuthaeuser" %% "scroll" % scrollVersion)
   )