From 6248835078a444db538ad4b3dda4f253ef70644a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Tue, 27 Feb 2024 17:29:54 +0100 Subject: [PATCH] bump Akka version to the one with native-image metadata --- native-image-tests/build.sbt | 8 ++------ project/Dependencies.scala | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/native-image-tests/build.sbt b/native-image-tests/build.sbt index 39026e3e..944a5df3 100644 --- a/native-image-tests/build.sbt +++ b/native-image-tests/build.sbt @@ -6,13 +6,9 @@ scalaVersion := "2.13.12" resolvers += "Akka library repository".at("https://repo.akka.io/maven") -lazy val akkaVersion = sys.props.getOrElse("akka.version", "2.9.1") -lazy val akkaR2dbcVersion = sys.props.getOrElse("akka.r2dbc.version", "1.2.2") +lazy val akkaVersion = sys.props.getOrElse("akka.version", "2.9.2") +lazy val akkaR2dbcVersion = sys.props.getOrElse("akka.r2dbc.version", "1.2.3") -// Run in a separate JVM, to make sure sbt waits until all threads have -// finished before returning. -// If you want to keep the application running while executing other -// sbt tasks, consider https://github.com/spray/sbt-revolver/ fork := true // GraalVM native image build diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 7fcdc2ab..c8ba0ca1 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -9,7 +9,7 @@ object Dependencies { val Scala3 = "3.3.1" val Scala2Versions = Seq(Scala213) val ScalaVersions = Dependencies.Scala2Versions :+ Dependencies.Scala3 - val AkkaVersion = System.getProperty("override.akka.version", "2.9.1") + val AkkaVersion = System.getProperty("override.akka.version", "2.9.2") val AkkaVersionInDocs = AkkaVersion.take(3) val AkkaPersistenceJdbcVersion = "5.2.0" // only in migration tool tests val AkkaProjectionVersionInDocs = "current"