-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
33 lines (18 loc) · 1.16 KB
/
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
32
name := "functional-vs-imperative"
version := "0.1"
scalaVersion := "2.13.3"
javacOptions ++= Seq("-source", "11", "-target", "11")
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
libraryDependencies += "org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.0"
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % "2.6.10"
libraryDependencies += "com.typesafe.akka" %% "akka-http" % "10.2.1"
libraryDependencies += "com.lightbend.akka" %% "akka-stream-alpakka-mongodb" % "2.0.2"
libraryDependencies += "com.typesafe.akka" %% "akka-serialization-jackson" % "2.6.10"
libraryDependencies += "io.socket" % "socket.io-client" % "1.0.1"
libraryDependencies += "com.typesafe.akka" %% "akka-slf4j" % "2.6.10"
libraryDependencies += "com.typesafe.akka" %% "akka-http-xml" % "10.2.1"
libraryDependencies += "com.typesafe.akka" %% "akka-actor-typed" % "2.6.10"
libraryDependencies += "com.typesafe.akka" %% "akka-cluster-typed" % "2.6.10"
libraryDependencies += "com.typesafe.akka" %% "akka-stream-typed" % "2.6.10"
libraryDependencies += "com.typesafe.slick" %% "slick" % "3.3.3"
libraryDependencies += "com.h2database" % "h2" % "1.4.200"