From 764a389f6bbb0384be461c3d9c02a33e83e57417 Mon Sep 17 00:00:00 2001 From: yhjhoo Date: Tue, 21 Jun 2022 12:30:19 +0800 Subject: [PATCH] Upgrade akka version --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 387ac92..917276f 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "s3mock" -version := "0.2.6" +version := "0.2.7" organization := "io.findify" @@ -8,7 +8,7 @@ scalaVersion in ThisBuild := "2.13.2" crossScalaVersions in ThisBuild := Seq("2.11.12", "2.12.10","2.13.2") -val akkaVersion = "2.5.31" +val akkaVersion = "2.6.19" licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT")) @@ -16,7 +16,7 @@ homepage := Some(url("https://github.com/findify/s3mock")) libraryDependencies ++= Seq( "com.typesafe.akka" %% "akka-stream" % akkaVersion, - "com.typesafe.akka" %% "akka-http" % "10.1.12", + "com.typesafe.akka" %% "akka-http" % "10.2.9", "com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % "test", "org.scala-lang.modules" %% "scala-xml" % "1.3.0", "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.6",