forked from nokia-wroclaw/play-angular11-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
25 lines (25 loc) · 800 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
lazy val root = (project in file("."))
.enablePlugins(PlayJava, PlayAkkaHttp2Support)
.settings(
name := """play-angular-starter""",
version := "1.0-SNAPSHOT",
maintainer := "[email protected]",
scalaVersion := "2.13.12",
libraryDependencies ++= Seq(
guice,
// Test Database
"com.h2database" % "h2" % "2.1.214",
// Testing libraries for dealing with CompletionStage...
"org.assertj" % "assertj-core" % "3.24.2" % Test,
"org.awaitility" % "awaitility" % "4.2.0" % Test,
),
javacOptions ++= Seq(
"-encoding", "UTF-8",
"-parameters",
"-Xlint:unchecked",
"-Xlint:deprecation",
"-Werror"
),
// Make verbose tests
testOptions in Test := Seq(Tests.Argument(TestFrameworks.JUnit, "-a", "-v"))
)