-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
44 lines (32 loc) · 1.52 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
name := "devjobs"
version := "0.1"
scalaVersion := "2.13.6"
idePackagePrefix := Some("dev.ohner")
lazy val circeVersion = "0.14.1"
lazy val http4sVersion = "0.23.5"
lazy val doobieVersion = "1.0.0-RC1"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
)
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
"org.http4s" %% "http4s-scalatags" % http4sVersion
)
libraryDependencies ++= Seq(
"org.tpolecat" %% "doobie-core" % doobieVersion,
"org.tpolecat" %% "doobie-postgres" % doobieVersion,
"org.tpolecat" %% "doobie-scalatest" % doobieVersion
)
libraryDependencies += "com.github.pureconfig" %% "pureconfig" % "0.17.0"
libraryDependencies += "org.postgresql" % "postgresql" % "42.3.1"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.10" % "test"
libraryDependencies += "com.softwaremill.sttp.client3" %% "core" % "3.3.16"
libraryDependencies += "com.softwaremill.sttp.client3" %% "http4s-backend" % "3.3.16" // for cats-effect 3.x & http4s 1.0.0-Mx
libraryDependencies += "com.github.nscala-time" %% "nscala-time" % "2.30.0"
libraryDependencies += "com.github.tomakehurst" % "wiremock-jre8-standalone" % "2.31.0"
libraryDependencies += "io.chrisdavenport" % "fuuid_2.13" % "0.8.0-M2"
libraryDependencies += "io.chrisdavenport" %% "fuuid-doobie" % "0.8.0-M2"