-
Notifications
You must be signed in to change notification settings - Fork 286
/
Dependencies.scala
33 lines (29 loc) · 1.63 KB
/
Dependencies.scala
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
32
33
import sbt._
object Dependencies {
object Versions {
val akka = "2.5.9"
val akkaHttp = "10.0.11"
}
val shared = Seq(
"com.github.nscala-time" %% "nscala-time" % "2.18.0",
"com.lihaoyi" %% "pprint" % "0.5.3",
"com.typesafe.akka" %% "akka-http" % Versions.akkaHttp,
"com.typesafe.akka" %% "akka-actor" % Versions.akka,
"com.typesafe.akka" %% "akka-stream" % Versions.akka, // Explicit dependency due to: https://bit.ly/akka-http-25
"com.typesafe.akka" %% "akka-http-spray-json" % Versions.akkaHttp,
"org.tpolecat" %% "doobie-core" % "0.5.0",
"mysql" % "mysql-connector-java" % "8.0.15",
"com.github.scopt" %% "scopt" % "3.7.0", // Command Line Commands such as de DbTablesCreator
"ch.qos.logback" % "logback-classic" % "1.2.3", // Logging backend implementation
"com.typesafe.scala-logging" %% "scala-logging" % "3.7.2", // SLF4J Scala wrapper
"net.logstash.logback" % "logstash-logback-encoder" % "4.11", // Log JSON encoder
"com.newmotion" %% "akka-rabbitmq" % "5.0.0",
// Test
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
"org.scalamock" %% "scalamock" % "4.0.0" % Test,
"com.typesafe.akka" %% "akka-testkit" % Versions.akka % Test,
"com.typesafe.akka" %% "akka-http-testkit" % Versions.akkaHttp % Test
)
val mooc = Seq()
val backoffice = Seq()
}