-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
26 lines (17 loc) · 959 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-streams-http-intro"
organization := "com.lancearlaus"
version := "0.1"
scalaVersion := "2.11.7"
scalacOptions ++= Seq("-deprecation", "-feature")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream-experimental" % "1.0",
"com.typesafe.akka" %% "akka-http-experimental" % "1.0",
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % "1.0",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"com.typesafe.akka" %% "akka-stream-testkit-experimental" % "1.0" % "test",
"com.typesafe.akka" %% "akka-http-testkit-experimental" % "1.0" % "test"
)
homepage := Some(url("https://github.com/lancearlaus/akka-streams-http-intro"))
licenses := Seq("Apache 2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
mainClass in (Compile, run) := Some("Main")