forked from dnvriend/docker-timezone-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
29 lines (22 loc) · 702 Bytes
/
build.sbt
File metadata and controls
29 lines (22 loc) · 702 Bytes
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
name := "docker-timezone-test"
version := "1.0.0-SNAPSHOT"
lazy val dockerTimezoneTestProject = (project in file("."))
.enablePlugins(PlayScala)
scalaVersion := "2.11.6"
libraryDependencies ++= Seq(
jdbc,
anorm,
cache,
ws
)
libraryDependencies ++= Seq(
"codes.reactive" %% "scala-time" % "0.3.0-SNAPSHOT",
"com.typesafe.akka" %% "akka-actor" % "2.3.9",
"io.spray" %% "spray-json" % "1.3.1",
"org.scalatest" %% "scalatest" % "2.2.4" % Test
)
resolvers ++= Seq (
"Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository",
"oss nexus" at "https://oss.sonatype.org/content/repositories/snapshots/"
)
name in Universal := name.value