-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
22 lines (20 loc) · 969 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
name := "akka-streams-tutorial"
version := "1.0"
scalaVersion := "2.13.1"
lazy val akkaVersion = "2.6.8"
lazy val logBackVersion = "1.2.3"
lazy val scalaTestVersion = "3.1.0"
lazy val alpAkkaAMQP = "2.0.2"
lazy val sprayJsonVersion = "1.3.5"
// format: off
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"ch.qos.logback" % "logback-classic" % logBackVersion,
"com.lightbend.akka" %% "akka-stream-alpakka-amqp" % alpAkkaAMQP,
"io.spray" %% "spray-json" % sprayJsonVersion,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % Test,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"org.scalatest" %% "scalatest" % scalaTestVersion % Test
)
// format: on