aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-07-31 12:13:47 -0700
committerGitHub <noreply@github.com>2018-07-31 12:13:47 -0700
commite6552f3b31b55396c652c196c5c3a9c3a6cfed71 (patch)
treef6826eac8bff8470683547006d1e64d2bc425d55 /build.sbt
parentdb0c9bebee4cbc587d4da0a624f671ffcf7a649f (diff)
downloaddriver-core-e6552f3b31b55396c652c196c5c3a9c3a6cfed71.tar.gz
driver-core-e6552f3b31b55396c652c196c5c3a9c3a6cfed71.tar.bz2
driver-core-e6552f3b31b55396c652c196c5c3a9c3a6cfed71.zip
Add message bus and topic abstractions (#181)v1.12.0
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index 0d95a2b..e8d9ba7 100644
--- a/build.sbt
+++ b/build.sbt
@@ -8,6 +8,8 @@ lazy val core = (project in file("."))
.settings(lintingSettings ++ formatSettings)
.settings(libraryDependencies ++= Seq(
"xyz.driver" %% "tracing" % "0.1.2",
+ "com.softwaremill.sttp" %% "core" % "1.2.2",
+ "com.softwaremill.sttp" %% "akka-http-backend" % "1.2.2",
"com.typesafe.akka" %% "akka-actor" % "2.5.13",
"com.typesafe.akka" %% "akka-stream" % "2.5.13",
"com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
@@ -18,6 +20,7 @@ lazy val core = (project in file("."))
"io.kamon" %% "kamon-statsd" % "1.0.0",
"io.kamon" %% "kamon-system-metrics" % "1.0.0",
"io.kamon" %% "kamon-akka-2.5" % "1.0.0",
+ "org.scala-lang.modules" %% "scala-async" % "0.9.7",
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test",
"org.scalaz" %% "scalaz-core" % "7.2.24",
@@ -37,4 +40,3 @@ lazy val core = (project in file("."))
"com.googlecode.libphonenumber" % "libphonenumber" % "8.9.7",
"javax.xml.bind" % "jaxb-api" % "2.2.8"
))
- .settings(scalaVersion := "2.12.6")