From f7d17df4d6b180ff9b5398ec9e812dcf4cdd5684 Mon Sep 17 00:00:00 2001 From: Emanuele Date: Wed, 25 Jul 2018 13:15:37 +0200 Subject: [PATCH] akka version update to 10.1.3 --- wiro/build.sbt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wiro/build.sbt b/wiro/build.sbt index 702fba96..154f321f 100644 --- a/wiro/build.sbt +++ b/wiro/build.sbt @@ -2,8 +2,10 @@ enablePlugins(GitVersioning) import microsites._ val autowire = "com.lihaoyi" %% "autowire" % "0.2.6" -val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.0.3" -val akkaHttpCirce = "de.heikoseeberger" %% "akka-http-circe" % "1.19.0" +val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.1.3" +val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.5.14" +val akkaStreams = "com.typesafe.akka" %% "akka-stream" % "2.5.14" +val akkaHttpCirce = "de.heikoseeberger" %% "akka-http-circe" % "1.21.0" val akkaHttpTestKitBase = "com.typesafe.akka" %% "akka-http-testkit" % "10.0.3" val scalaTestBase = "org.scalatest" %% "scalatest" % "3.0.1" val akkaHttpTestKit = akkaHttpTestKitBase % "test" @@ -30,6 +32,8 @@ val commonDependencies = Seq( scalaLogging, autowire, akkaHttp, + akkaActor, + akkaStreams, akkaHttpCirce, akkaHttpTestKit, scalaTest,