-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
27 lines (22 loc) · 854 Bytes
/
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
lazy val root = (project in file(".")).settings(
name := "2Cache",
version := "0.1",
scalaVersion := "2.12.8",
logLevel := Level.Warn,
mainClass in Compile := Some("com.sghaida.engine.mainApp"),
assemblyJarName := s"${name.value}-${version.value}.jar",
scalacOptions ++= Seq(
"-feature",
"-language:implicitConversions",
"-language:postfixOps"
)
)
val akkaVersion = "2.5.21"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"org.slf4j" % "slf4j-simple" % "1.7.5",
"com.github.nscala-time" %% "nscala-time" % "2.18.0",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"org.scalatest" %% "scalatest" % "3.0.6" % Test
)