From 2a55b3e0f949fbbe171136f2d1e6bf48659b1166 Mon Sep 17 00:00:00 2001 From: Janis Date: Thu, 9 Oct 2025 11:22:35 +0200 Subject: [PATCH] Update build configuration and add library dependencies --- .idea/.gitignore | 8 ------ app/controllers/HomeController.scala | 2 ++ app/views/index.scala.html | 1 + build.sbt | 40 ++++++++++++++++++++++++++-- 4 files changed, 41 insertions(+), 10 deletions(-) delete mode 100644 .idea/.gitignore diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/app/controllers/HomeController.scala b/app/controllers/HomeController.scala index 272ed2d..48e5745 100644 --- a/app/controllers/HomeController.scala +++ b/app/controllers/HomeController.scala @@ -11,6 +11,8 @@ import play.api.mvc._ @Singleton class HomeController @Inject()(val controllerComponents: ControllerComponents) extends BaseController { + + /** * Create an Action to render an HTML page. * diff --git a/app/views/index.scala.html b/app/views/index.scala.html index 68d37fb..f84cd2c 100644 --- a/app/views/index.scala.html +++ b/app/views/index.scala.html @@ -1,5 +1,6 @@ @() @main("Welcome to Play") { +

Welcome to Play!

} diff --git a/build.sbt b/build.sbt index 45a4ed3..8b31bd1 100644 --- a/build.sbt +++ b/build.sbt @@ -3,8 +3,10 @@ organization := "com.example" version := "1.0-SNAPSHOT" -lazy val root = (project in file(".")).enablePlugins(PlayScala) -lazy val old = (project in file("./knockoutwhist")) +lazy val root = (project in file(".")).enablePlugins(PlayScala).settings( + Compile / unmanagedSourceDirectories += baseDirectory.value / "knockoutwhist", + Test / unmanagedSourceDirectories += baseDirectory.value / "knockoutwhist" +) scalaVersion := "3.5.1" @@ -12,3 +14,37 @@ scalaVersion := "3.5.1" libraryDependencies += guice libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2" % Test +libraryDependencies ++= Seq( + guice, + "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2" % Test, +) + +libraryDependencies += "org.scalactic" %% "scalactic" % "3.2.18" +libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test" +libraryDependencies +="io.github.mkpaz" % "atlantafx-base" % "2.0.1" +libraryDependencies += "org.scalafx" %% "scalafx" % "22.0.0-R33" + +libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "2.3.0" +libraryDependencies += "org.playframework" %% "play-json" % "3.1.0-M1" + +libraryDependencies ++= { + // Determine OS version of JavaFX binaries + lazy val osName = System.getProperty("os.name") match { + case n if n.startsWith("Linux") => "linux" + case n if n.startsWith("Mac") => "mac" + case n if n.startsWith("Windows") => "win" + case _ => throw new Exception("Unknown platform!") + } + Seq("base", "controls", "fxml", "graphics", "media", "swing", "web") + .map(m => "org.openjfx" % s"javafx-$m" % "21" classifier osName) +} + +libraryDependencies += "net.codingwell" %% "scala-guice" % "7.0.0" + +Test / testOptions += Tests.Filter(_.equals("de.knockoutwhist.TestSequence")) + +coverageEnabled := true +coverageFailOnMinimum := true +coverageMinimumStmtTotal := 85 +coverageMinimumBranchTotal := 100 +