-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathbuild.sbt
More file actions
21 lines (14 loc) · 640 Bytes
/
build.sbt
File metadata and controls
21 lines (14 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name := """java-play-angular-seed"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava).settings(
watchSources ++= (baseDirectory.value / "ui/src" ** "*").get
)
scalaVersion := "2.13.16"
libraryDependencies += guice
// Test Database
libraryDependencies += "com.h2database" % "h2" % "2.3.232"
// Testing libraries for dealing with CompletionStage...
libraryDependencies += "org.assertj" % "assertj-core" % "3.27.3" % Test
libraryDependencies += "org.awaitility" % "awaitility" % "4.2.2" % Test
// Make verbose tests
(Test / testOptions) := Seq(Tests.Argument(TestFrameworks.JUnit, "-a", "-v"))