From c527aac9ed8e2b5a90716d8bc2b668e05b636441 Mon Sep 17 00:00:00 2001 From: Janis Date: Thu, 9 Oct 2025 10:52:04 +0200 Subject: [PATCH] Add migration state XML files and update build configuration --- .gitignore | 1 + build.sbt | 9 +++------ build.sc | 11 ----------- knockoutwhist | 1 + project/plugins.sbt | 4 ++++ 5 files changed, 9 insertions(+), 17 deletions(-) delete mode 100644 build.sc create mode 120000 knockoutwhist diff --git a/.gitignore b/.gitignore index 2ff0ed2..c1ae50f 100644 --- a/.gitignore +++ b/.gitignore @@ -134,3 +134,4 @@ target /.project /.settings /RUNNING_PID +/knockoutwhist/ diff --git a/build.sbt b/build.sbt index d9bacdf..45a4ed3 100644 --- a/build.sbt +++ b/build.sbt @@ -4,14 +4,11 @@ organization := "com.example" version := "1.0-SNAPSHOT" lazy val root = (project in file(".")).enablePlugins(PlayScala) +lazy val old = (project in file("./knockoutwhist")) -scalaVersion := "2.13.17" + +scalaVersion := "3.5.1" libraryDependencies += guice libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2" % Test -// Adds additional packages into Twirl -//TwirlKeys.templateImports += "com.example.controllers._" - -// Adds additional packages into conf/routes -// play.sbt.routes.RoutesKeys.routesImport += "com.example.binders._" diff --git a/build.sc b/build.sc deleted file mode 100644 index cc5a226..0000000 --- a/build.sc +++ /dev/null @@ -1,11 +0,0 @@ -import mill._ -import $ivy.`com.lihaoyi::mill-contrib-playlib:`, mill.playlib._ - -object knockoutwhistweb extends RootModule with PlayModule { - - def scalaVersion = "2.13.17" - def playVersion = "3.0.9" - def twirlVersion = "2.0.9" - - object test extends PlayTests -} diff --git a/knockoutwhist b/knockoutwhist new file mode 120000 index 0000000..55099bd --- /dev/null +++ b/knockoutwhist @@ -0,0 +1 @@ +/home/janis/Workspaces/IntelliJ/KnockOutWhist \ No newline at end of file diff --git a/project/plugins.sbt b/project/plugins.sbt index 42328bb..4d375c9 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,6 @@ addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9") addSbtPlugin("org.foundweekends.giter8" % "sbt-giter8-scaffold" % "0.18.0") + +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1") +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0") +addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1") \ No newline at end of file