-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (23 loc) · 1022 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
32
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.8"
lazy val root = (project in file("."))
.settings(
name := "moex",
idePackagePrefix := Some("com.moex.app"),
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.7.5",
"org.slf4j" % "slf4j-simple" % "1.7.5",
"com.typesafe.akka" % "akka-actor-typed_2.13" % "2.6.14",
"com.typesafe.akka" % "akka-stream-typed_2.13" % "2.6.14",
"com.typesafe.akka" % "akka-http_2.13" % "10.2.4",
"com.typesafe.akka" % "akka-http-spray-json_2.13" % "10.2.4",
"ch.megard" % "akka-http-cors_2.13" % "1.1.1",
"com.typesafe.slick" %% "slick" % "3.3.3",
"com.typesafe.slick" %% "slick-hikaricp" % "3.3.3",
"com.github.tminglei" %% "slick-pg" % "0.20.3",
"com.github.tminglei" %% "slick-pg_play-json" % "0.20.3",
"org.postgresql" % "postgresql" % "42.3.4",
"org.scala-lang.modules" %% "scala-xml" % "2.1.0",
"org.typelevel" %% "cats-core" % "2.8.0"
)
)