summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-10-11 01:08:14 -0700
committerJakob Odersky <jakob@odersky.com>2016-10-11 01:08:14 -0700
commit7ab87deaa91bd19527da2c72937b1e2d1a97ef12 (patch)
tree5846934da9697498eb7c93f5c6679739870ae5c8 /build.sbt
downloadghstream-7ab87deaa91bd19527da2c72937b1e2d1a97ef12.tar.gz
ghstream-7ab87deaa91bd19527da2c72937b1e2d1a97ef12.tar.bz2
ghstream-7ab87deaa91bd19527da2c72937b1e2d1a97ef12.zip
Initial commitHEADmaster
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt14
1 files changed, 14 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..08620fd
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,14 @@
+name := "akka-github"
+
+scalaVersion := "2.11.8"
+
+val AkkaVersion = "2.4.11"
+
+libraryDependencies ++= Seq(
+ "com.typesafe.akka" %% "akka-actor" % AkkaVersion,
+ "com.typesafe.akka" %% "akka-stream" % AkkaVersion,
+ "com.typesafe.akka" %% "akka-http-core" % AkkaVersion,
+ "com.typesafe.akka" %% "akka-http-testkit" % AkkaVersion,
+ "com.typesafe.akka" %% "akka-http-experimental" % AkkaVersion,
+ "io.spray" %% "spray-json" % "1.3.2"
+)