-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
30 lines (25 loc) · 1.03 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name := "AKKACLUSTEREXAMPLE"
version := "0.1"
scalaVersion := "2.11.8"
libraryDependencies ++= {
Seq(
/** Scala Dependency */
"org.scala-lang" % "scala-library" % "2.11.8",
/**akka actor and akka http Dependencies*/
"com.typesafe.akka" %% "akka-actor" % "2.5.11",
"com.typesafe.akka" %% "akka-http" % "10.1.0",
"com.typesafe.akka" %% "akka-http-core" % "10.1.0",
"com.typesafe.akka" %% "akka-stream" % "2.5.11",
"ch.megard" %% "akka-http-cors" % "0.3.0",
"com.typesafe.akka" %% "akka-cluster" % "2.5.11",
"com.typesafe.akka" %% "akka-remote" % "2.5.11",
"com.typesafe.akka" %% "akka-multi-node-testkit" % "2.5.11",
"org.scalatest" %% "scalatest" % "3.0.1" % Test,
"com.beachape.filemanagement" %% "schwatcher" % "0.3.5",
"com.typesafe.akka" %% "akka-cluster-metrics" % "2.5.11",
/**logger Dependencies*/
"org.apache.logging.log4j" % "log4j-core" % "2.8.2",
"org.apache.logging.log4j" % "log4j-api" % "2.8.2",
"org.apache.logging.log4j" %% "log4j-api-scala" % "11.0"
)
}