-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (19 loc) · 681 Bytes
/
build.sbt
File metadata and controls
23 lines (19 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
enablePlugins(JavaAppPackaging)
name := "greeter-service-example"
organization := "com.danielrhoades"
version := "0.1"
scalaVersion := "2.11.8"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= {
val akkaV = "2.4.5"
val scalaTestV = "2.2.6"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaV,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaV,
"org.scalatest" %% "scalatest" % scalaTestV % "test"
)
}
Revolver.settings