-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (23 loc) · 836 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
28
29
30
31
name := "a-config-akka-example"
version := "0.1"
scalaVersion := "2.13.0"
lazy val akkaVersion = "2.6.0-M3"
lazy val scalatestVersion = "3.0.8"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.3",
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
"org.scalactic" %% "scalactic" % scalatestVersion % Test
)
lazy val commonSettings = Seq(
organization := "com.github.daggerok",
test in assembly := {}
)
lazy val root = (project in file("."))
.settings(commonSettings: _*)
.settings(
mainClass in assembly := Some("com.github.daggerok.akka.Main"),
// more settings here ...
)