From d1a3c9cbb5b78d2a7703d9de3876c8e0467b4eb3 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Tue, 8 Sep 2020 08:11:27 +0200 Subject: [PATCH] Fix akka mixed versioning exception --- build.sbt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 2a8aca4a..d81d84cd 100644 --- a/build.sbt +++ b/build.sbt @@ -44,12 +44,14 @@ lazy val psforeverSettings = Seq( "com.typesafe.akka" %% "akka-slf4j" % "2.6.8", "com.typesafe.akka" %% "akka-protobuf-v3" % "2.6.8", "com.typesafe.akka" %% "akka-stream" % "2.6.8", - "com.typesafe.akka" %% "akka-testkit" % "2.6.8" % "test", + "com.typesafe.akka" %% "akka-testkit" % "2.6.8" % "test", "com.typesafe.akka" %% "akka-actor-typed" % "2.6.8", "com.typesafe.akka" %% "akka-cluster-typed" % "2.6.8", + "com.typesafe.akka" %% "akka-coordination" % "2.6.8", + "com.typesafe.akka" %% "akka-cluster-tools" % "2.6.8", "com.typesafe.scala-logging" %% "scala-logging" % "3.9.2", "org.specs2" %% "specs2-core" % "4.10.3" % "test", - "org.scalatest" %% "scalatest" % "3.2.2" % "test", + "org.scalatest" %% "scalatest" % "3.2.2" % "test", "org.scodec" %% "scodec-core" % "1.11.7", "net.java.dev.jna" % "jna" % "5.6.0", "com.typesafe.akka" %% "akka-slf4j" % "2.6.8",