summaryrefslogtreecommitdiff
path: root/crashboxd/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-04-01 13:21:15 -0700
committerJakob Odersky <jakob@odersky.com>2017-04-01 13:21:15 -0700
commit26aa8adc30a84d983d020e34b488ac22a31cb544 (patch)
tree5e2cee54da5f64011f56a85c4b09bd1add4eacc7 /crashboxd/build.sbt
parent8a4ebe76200a2e570bd959d8780c3c0a0bf71d5c (diff)
downloadcrashbox-ci-26aa8adc30a84d983d020e34b488ac22a31cb544.tar.gz
crashbox-ci-26aa8adc30a84d983d020e34b488ac22a31cb544.tar.bz2
crashbox-ci-26aa8adc30a84d983d020e34b488ac22a31cb544.zip
Add yaml parser and docker executor
Diffstat (limited to 'crashboxd/build.sbt')
-rw-r--r--crashboxd/build.sbt15
1 files changed, 15 insertions, 0 deletions
diff --git a/crashboxd/build.sbt b/crashboxd/build.sbt
new file mode 100644
index 0000000..ada2433
--- /dev/null
+++ b/crashboxd/build.sbt
@@ -0,0 +1,15 @@
+import crashbox._
+
+libraryDependencies ++= Seq(
+ Dependencies.akkaActor,
+ Dependencies.akkaHttp,
+ Dependencies.akkaHttpCore,
+ Dependencies.akkaHttpSpray,
+ Dependencies.akkaStream,
+ Dependencies.jgitArchive,
+ Dependencies.jgitServer,
+ Dependencies.dockerClient,
+ Dependencies.slick,
+ Dependencies.yaml,
+ Dependencies.scalatest % Test
+)