-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
44 lines (43 loc) · 2 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
33
34
35
36
37
38
39
40
41
42
43
44
val Http4sVersion = "0.23.15"
val CirceVersion = "0.14.3"
val MunitVersion = "0.7.29"
val LogbackVersion = "1.2.11"
val MunitCatsEffectVersion = "1.0.7"
val doobieVersion = "1.0.0-RC3"
val h2Version = "2.2.220"
val flywayVersion = "9.22.0"
val PureConfigVersion = "0.17.4"
lazy val root = (project in file("."))
.settings(
organization := "com.example",
name := "reviews_service",
version := "0.0.1-SNAPSHOT",
scalaVersion := "2.13.12",
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-blaze-server" % Http4sVersion,
// "org.http4s" %% "http4s-ember-client" % Http4sVersion,
"org.http4s" %% "http4s-blaze-client" % Http4sVersion,
"org.http4s" %% "http4s-circe" % Http4sVersion,
"org.http4s" %% "http4s-dsl" % Http4sVersion,
"io.circe" %% "circe-generic" % CirceVersion,
"org.tpolecat" %% "doobie-h2" % doobieVersion,
"org.tpolecat" %% "doobie-hikari" % doobieVersion,
"de.lhns" %% "doobie-flyway" % "0.4.0",
"com.h2database" % "h2" % h2Version,
"org.flywaydb" % "flyway-core" % flywayVersion,
"org.scalameta" %% "svm-subs" % "20.2.0",
"ch.qos.logback" % "logback-classic" % LogbackVersion % Runtime,
"com.github.pureconfig" %% "pureconfig" % PureConfigVersion,
"com.github.pureconfig" %% "pureconfig-cats-effect" % PureConfigVersion,
"io.circe" %% "circe-literal" % CirceVersion % "it,test",
"org.scalameta" %% "munit" % MunitVersion % Test,
"org.typelevel" %% "munit-cats-effect-3" % MunitCatsEffectVersion % Test,
"com.alejandrohdezma" %% "http4s-munit" % "0.15.1" % Test,
"org.typelevel" %% "munit-cats-effect-3" % "1.0.6" % Test,
"org.scalatest" %% "scalatest" % "3.2.17" % Test,
"org.tpolecat" %% "doobie-scalatest" % doobieVersion % Test
),
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
testFrameworks += new TestFramework("munit.Framework")
)