summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
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"
+)