-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
35 lines (24 loc) · 949 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
32
33
34
name := "playground"
version := "1.0"
scalaVersion := "2.11.4"
libraryDependencies ++= Seq( jdbc , anorm , cache , ws )
lazy val `playground` = (project in file(".")).enablePlugins(PlayScala)
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.5",
"org.joda" % "joda-convert" % "1.7",
"org.scala-lang.modules" %% "scala-async" % "0.9.2",
"com.typesafe.akka" %% "akka-actor" % "2.3.7"
)
val macwire = Seq(
"com.softwaremill.macwire" %% "macros",
"com.softwaremill.macwire" %% "runtime"
).map(_ % "0.7.3")
libraryDependencies ++= macwire
resolvers += "Scalaz bintray" at "http://dl.bintray.com/scalaz/releases"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.2",
"org.mockito" % "mockito-core" % "1.10.8",
"org.specs2" %% "specs2" % "2.4.11",
"org.scalacheck" %% "scalacheck" % "1.11.6"
).map(_ % "test")
unmanagedResourceDirectories in Test <+= baseDirectory ( _ /"target/web/public/test" )