Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-03-09 08:03:27 +0300
committerChris Rebert <code@rebertia.com>2015-03-09 08:03:27 +0300
commitab4a79ab0aa2fcccf874ff9db7e30515b10b80fe (patch)
tree235da292346cbcd417d54de68b4beef1fe9bb6cf
parentb69504ea78d0949f76234cfe28d09f8f89181615 (diff)
add dependencies for fancier logging
-rw-r--r--build.sbt3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index 2b1096c..de3bdd3 100644
--- a/build.sbt
+++ b/build.sbt
@@ -14,6 +14,8 @@ resolvers += "Eclipse Foundation Snapshots" at "https://repo.eclipse.org/content
libraryDependencies += "org.eclipse.mylyn.github" % "org.eclipse.egit.github.core" % "2.1.5"
+libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.2"
+
libraryDependencies ++= {
val akkaV = "2.3.9"
val sprayV = "1.3.2"
@@ -22,6 +24,7 @@ libraryDependencies ++= {
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-testkit" % sprayV % "test",
"com.typesafe.akka" %% "akka-actor" % akkaV,
+ "com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"org.specs2" %% "specs2" % "2.3.12" % "test"
)