-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
24 lines (18 loc) · 845 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
name := "wehkamp"
version := "1.0"
scalaVersion := "2.11.7"
lazy val wehkamp = (project in file("."))
.enablePlugins(PlayScala)
lazy val akkaVersion = "2.4.1"
lazy val playVersion = "2.4.6"
resolvers ++= Seq(
"Typesafe Snapshots" at "http://repo.typesafe.com/typesafe/snapshots/",
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/")
libraryDependencies ++= Seq(
"com.typesafe.akka" % "akka-actor_2.11" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion,
"com.typesafe.play" %% "play-ws" % playVersion,
"com.typesafe.play" %% "play-json" % playVersion,
"org.scalatest" %% "scalatest" % "2.2.4" % Test,
"com.typesafe.play" %% "play-test" % playVersion % Test)