-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·20 lines (18 loc) · 794 Bytes
/
build.sbt
File metadata and controls
executable file
·20 lines (18 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import sbt.Keys.libraryDependencies
enablePlugins(JavaAppPackaging)
maintainer := "Mingfei Shao"
packageSummary := s"Akka ${version.value} Server"
lazy val root = (project in file(".")).
settings(
name := "CSC536_FinalProject",
version := "1.0",
scalaVersion := "2.12.4",
resolvers += Resolver.bintrayRepo("hseeberger", "maven"),
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.5.12",
libraryDependencies += "com.typesafe.akka" %% "akka-remote" % "2.5.12",
libraryDependencies += "com.typesafe.akka" %% "akka-cluster" % "2.5.12",
libraryDependencies ++= Vector(
"de.heikoseeberger" %% "constructr" % "0.19.0",
"com.lightbend.constructr" %% "constructr-coordination-zookeeper" % "0.4.0",
)
)