-
Notifications
You must be signed in to change notification settings - Fork 44
/
build.sbt
62 lines (45 loc) · 2.03 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
lazy val commonSettings = Seq(
name := "todo http4s doobie",
version := "1.0-SNAPSHOT",
scalaVersion := "2.13.8",
scalacOptions ++= Seq(
"-deprecation",
"-Xfatal-warnings",
"-Ywarn-value-discard",
"-Xlint:missing-interpolator"
),
)
lazy val Http4sVersion = "0.23.12"
lazy val DoobieVersion = "1.0.0-RC2"
lazy val H2Version = "2.1.214"
lazy val FlywayVersion = "9.2.0"
lazy val CirceVersion = "0.14.1"
lazy val PureConfigVersion = "0.17.1"
lazy val LogbackVersion = "1.2.11"
lazy val ScalaTestVersion = "3.2.13"
lazy val ScalaMockVersion = "5.2.0"
lazy val root = (project in file("."))
.configs(IntegrationTest)
.settings(
commonSettings,
Defaults.itSettings,
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-blaze-server" % Http4sVersion,
"org.http4s" %% "http4s-circe" % Http4sVersion,
"org.http4s" %% "http4s-dsl" % Http4sVersion,
"org.http4s" %% "http4s-blaze-client" % Http4sVersion % "it,test",
"org.tpolecat" %% "doobie-core" % DoobieVersion,
"org.tpolecat" %% "doobie-h2" % DoobieVersion,
"org.tpolecat" %% "doobie-hikari" % DoobieVersion,
"com.h2database" % "h2" % H2Version,
"org.flywaydb" % "flyway-core" % FlywayVersion,
"io.circe" %% "circe-generic" % CirceVersion,
"io.circe" %% "circe-literal" % CirceVersion % "it,test",
"io.circe" %% "circe-optics" % CirceVersion % "it",
"com.github.pureconfig" %% "pureconfig" % PureConfigVersion,
"com.github.pureconfig" %% "pureconfig-cats-effect" % PureConfigVersion,
"ch.qos.logback" % "logback-classic" % LogbackVersion,
"org.scalatest" %% "scalatest" % ScalaTestVersion % "it,test",
"org.scalamock" %% "scalamock" % ScalaMockVersion % "test"
)
)