We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d23ac9d commit 47e87f9Copy full SHA for 47e87f9
build.sbt
@@ -15,7 +15,8 @@ libraryDependencies ++= Seq(
15
Dependencies.elastic4play,
16
Dependencies.reflections,
17
Dependencies.zip4j,
18
- Dependencies.dockerClient
+ Dependencies.dockerClient,
19
+ Dependencies.akkaCluster
20
)
21
22
resolvers += Resolver.sbtPluginRepo("releases")
project/Dependencies.scala
@@ -20,5 +20,6 @@ object Dependencies {
val zip4j = "net.lingala.zip4j" % "zip4j" % "1.3.2"
val elastic4play = "org.thehive-project" %% "elastic4play" % "1.11.5"
val dockerClient = "com.spotify" % "docker-client" % "8.14.4"
23
+ val akkaCluster = "com.typesafe.akka" %% "akka-cluster" % "2.5.21"
24
}
25
0 commit comments