-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.sbt
31 lines (22 loc) · 841 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
26
27
28
29
30
31
name := "scalongo"
version := "3.0"
lazy val `scalongo` = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.8"
routesGenerator := InjectedRoutesGenerator
libraryDependencies ++= Seq(
guice,
ws,
filters,
specs2 % Test
)
unmanagedResourceDirectories in Test <+= baseDirectory(_ / "target/web/public/test")
resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases"
libraryDependencies ++= Seq(
"org.mongodb.scala" %% "mongo-scala-driver" % "2.2.1",
"org.scala-lang.modules" %% "scala-async" % "0.9.5",
"com.github.t3hnar" % "scala-bcrypt_2.11" % "2.5",
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % "test"
)
javaOptions in Test += "-Dconfig.file=conf/application-test.conf"
javaOptions in Test += "-Dlogger.file=conf/test-logger.xml"
parallelExecution in Test := false