-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
26 lines (19 loc) · 840 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
name := """akka-lnl"""
version := "1.0"
scalaVersion := "2.11.8"
scalacOptions := Seq("-deprecation", "-encoding", "utf8")
lazy val akkaHttpHateoas = ProjectRef(uri("https://github.com/marcuslange/akka-http-hateoas.git"), "akka-http-hateoas")
lazy val root = (project in file("."))
.dependsOn(akkaHttpHateoas)
libraryDependencies ++= {
val akkaV = "2.4.4"
Seq(
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-http-core" % akkaV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaV,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaV,
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"com.typesafe.akka" %% "akka-http-testkit" % akkaV % "test",
"org.scalatest" %% "scalatest" % "2.2.6" % "test")
}