-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (24 loc) · 950 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
name := "camera_stream"
version := "1.0"
val akkaVersion = "2.4.12"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-stream-contrib" % "0.4",
//"com.typesafe.akka" %% "akka-http-core" % akkaVersion,
"com.typesafe.akka" %% "akka-http-core" % "2.4.9",
"com.typesafe.akka" %% "akka-http-experimental" % "2.4.9",
"org.typelevel" %% "cats" % "0.8.0",
// mapping
"com.typesafe.play" %% "play-json" % "2.5.8",
// logs
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"ch.qos.logback" % "logback-classic" % "1.1.3",
// test
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"org.scalatest" %% "scalatest" % "3.0.0" % "test"
)
// Assembly settings
//mainClass in Global := Some("fr.xebia.streams.GroupedSource")
fork in run := true