diff --git a/build.sbt b/build.sbt index d93f55ee67..c65cd24dd8 100644 --- a/build.sbt +++ b/build.sbt @@ -404,6 +404,7 @@ lazy val remote = streamTestkit % Test, jackson % "test->test") .settings(Dependencies.remote) + .settings(dependencyOverrides += "org.agrona" % "agrona" % Dependencies.agronaVersion) .settings(AutomaticModuleName.settings("pekko.remote")) .settings(AddMetaInfLicenseFiles.remoteSettings) .settings(OSGi.remote) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index a27e799fb1..0efa6dc1a3 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -33,7 +33,7 @@ object Dependencies { val aeronVersion = "1.45.0" // needs to be inline with the aeron version, check // https://github.com/real-logic/aeron/blob/1.x.y/build.gradle - val agronaVersion = "1.21.1" + val agronaVersion = "1.22.0" val bouncyCastleVersion = "1.78.1" val nettyVersion = "4.1.112.Final" val logbackVersion = "1.3.14"