From dbaaa5e5669cbfe7c2ffb03c6d59305778868a01 Mon Sep 17 00:00:00 2001 From: Chrissi <christopher@hbsc-werner.de> Date: Thu, 20 Jun 2019 13:03:27 +0200 Subject: [PATCH] remove scala fx from build properties --- solutions/RSync/build.sbt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/solutions/RSync/build.sbt b/solutions/RSync/build.sbt index 9d91e92..693c450 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) ) -- GitLab