Skip to content

Commit

Permalink
Update Akka dependencies (#2929)
Browse files Browse the repository at this point in the history
* Akka 2.7.0-M5
* Akka HTTP 10.4.0-M2
* Akka gRPC 2.2.0-M
  • Loading branch information
patriknw authored Oct 17, 2022
1 parent b65b444 commit 55087ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ object Dependencies {
val Scala212 = "2.12.17"
val ScalaVersions = Seq(Scala213, Scala212)

val AkkaVersion = "2.7.0-M3"
val AkkaVersion = "2.7.0-M5"
val AkkaBinaryVersion = "2.7"

val InfluxDBJavaVersion = "2.15"
Expand All @@ -18,8 +18,9 @@ object Dependencies {
val AwsSpiAkkaHttpVersion = "0.0.11"
// Sync with plugins.sbt
val AkkaGrpcBinaryVersion = "2.2"
val AkkaHttpVersion = "10.4.0-M1"
val AkkaHttpVersion = "10.4.0-M2"
val AkkaHttpBinaryVersion = "10.4"
val AlpakkaKafkaVersion = "3.1.0-M2"
val ScalaTestVersion = "3.2.11"
val TestContainersScalaTestVersion = "0.40.3"
val mockitoVersion = "4.8.0" // check even https://github.com/scalatest/scalatestplus-mockito/releases
Expand Down Expand Up @@ -126,7 +127,7 @@ object Dependencies {
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"com.typesafe.akka" %% "akka-stream-testkit" % AkkaVersion % Test,
"com.typesafe.akka" %% "akka-stream-kafka" % "3.1.0-M1" % Test,
"com.typesafe.akka" %% "akka-stream-kafka" % AlpakkaKafkaVersion % Test,
"junit" % "junit" % "4.13.2" % Test, // Eclipse Public License 1.0
"org.scalatest" %% "scalatest" % "3.2.11" % Test // ApacheV2
)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
// Akka gRPC -- sync with version in Dependencies.scala:19
addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.2.0-M1")
addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.2.0-M2")
// templating
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")

0 comments on commit 55087ff

Please sign in to comment.