forked from playframework/play-java-websocket-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (15 loc) · 738 Bytes
/
build.sbt
File metadata and controls
23 lines (15 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name := "play-java-websocket-example"
version := "1.0"
scalaVersion := "2.12.3"
// https://github.com/sbt/junit-interface
testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v")
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-deprecation", "-Xlint")
lazy val root = (project in file(".")).enablePlugins(PlayJava)
libraryDependencies += guice
libraryDependencies += ws
libraryDependencies += "org.webjars" % "bootstrap" % "2.3.2"
libraryDependencies += "org.webjars" % "flot" % "0.8.3"
// Testing libraries for dealing with CompletionStage...
libraryDependencies += "org.assertj" % "assertj-core" % "3.8.0" % Test
libraryDependencies += "org.awaitility" % "awaitility" % "3.0.0" % Test
LessKeys.compress := true