Skip to content

Commit

Permalink
Bump Akka HTTP 10.1.8 (lagom#1817)
Browse files Browse the repository at this point in the history
* Bump Akka HTTP version

* Fix typo
  • Loading branch information
ignasi35 authored and marcospereira committed Mar 21, 2019
1 parent a853522 commit cd39048
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object Dependencies {
val PlayFileWatch = "1.1.8"

val Akka: String = sys.props.getOrElse("lagom.build.akka.version", "2.5.21")
val AkkaHttp = "10.1.7"
val AkkaHttp = "10.1.8"
val Aeron = "1.15.1"

val AkkaPersistenceCassandra = "0.61"
Expand Down Expand Up @@ -102,7 +102,7 @@ object Dependencies {
private val akkaPersistenceQuery = "com.typesafe.akka" %% "akka-persistence-query" % Versions.Akka
private val akkaSlf4j = "com.typesafe.akka" %% "akka-slf4j" % Versions.Akka excludeAll (excludeSlf4j: _*)
private val akkaStream = "com.typesafe.akka" %% "akka-stream" % Versions.Akka
private val akkaProfobuf = "com.typesafe.akka" %% "akka-protobuf" % Versions.Akka
private val akkaProtobuf = "com.typesafe.akka" %% "akka-protobuf" % Versions.Akka

private val akkaManagement = "com.lightbend.akka.management" %% "akka-management" % Versions.AkkaManagement
private val akkaManagementClusterHttp = "com.lightbend.akka.management" %% "akka-management-cluster-http" % Versions.AkkaManagement
Expand Down Expand Up @@ -476,7 +476,7 @@ object Dependencies {
akkaStream,
akkaActor,
akkaSlf4j,
akkaProfobuf
akkaProtobuf
)

val client = libraryDependencies ++= Seq(
Expand Down Expand Up @@ -598,9 +598,13 @@ object Dependencies {
// Upgrades needed to match whitelist
akkaStream,
akkaActor,
akkaProfobuf,
akkaProtobuf,
akkaSlf4j,
scalaXml
scalaXml,
akkaHttpCore,
akkaHttpRouteDsl,
akkaHttpSprayJson,
akkaParsing
)

val `akka-management-javadsl` = libraryDependencies ++= Seq.empty[ModuleID]
Expand Down Expand Up @@ -832,7 +836,7 @@ object Dependencies {
akkaStream,
akkaActor,
akkaSlf4j,
akkaProfobuf,
akkaProtobuf,
scalaXml
) ++ Seq("logback-core", "logback-classic").map("ch.qos.logback" % _ % Versions.Logback)

Expand All @@ -851,7 +855,7 @@ object Dependencies {
akkaStream,
akkaActor,
akkaSlf4j,
akkaProfobuf
akkaProtobuf

)

Expand All @@ -866,7 +870,7 @@ object Dependencies {
akkaStream,
akkaActor,
akkaSlf4j,
akkaProfobuf
akkaProtobuf
)

val `build-tool-support` = libraryDependencies ++= Seq(
Expand Down Expand Up @@ -923,7 +927,7 @@ object Dependencies {
// updates to match whitelist
akkaActor,
akkaStream,
akkaProfobuf,
akkaProtobuf,
akkaSlf4j,
typesafeConfig,
sslConfig,
Expand Down

0 comments on commit cd39048

Please sign in to comment.