-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
39 lines (32 loc) · 1.28 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
ThisBuild / version := "1.0.0"
ThisBuild / scalaVersion := "2.13.12"
lazy val root = (project in file("."))
.settings(
name := "imgw-streaming"
)
val http4sVersion = "0.23.17"
val http4sNettyVersion = "0.5.4"
val circeVersion = "0.14.3"
val log4catsVersion = "2.5.0"
val logbackVersion = "1.2.11"
val cirisVersion = "3.0.0"
val nettyHTTP2CodecVersion = "4.1.85.Final"//version should be consistent with other netty packages coming from http4s
val javaxXmlVersion = "2.3.1"
val DoobieVersion = "1.0.0-RC1"
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-dsl" % "1.0.0-M23",
"org.http4s" %% "http4s-blaze-client" % "1.0.0-M23",
"org.http4s" %% "http4s-circe" %"1.0.0-M23",
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"is.cir" %% "ciris" % cirisVersion,
"is.cir" %% "ciris-refined" % cirisVersion,
"io.netty" % "netty-codec-http2" % nettyHTTP2CodecVersion,
"org.typelevel" %% "log4cats-slf4j" % log4catsVersion,
"ch.qos.logback" % "logback-classic" % logbackVersion,
"javax.xml.bind" % "jaxb-api" % javaxXmlVersion,
"org.tpolecat" %% "doobie-core" % DoobieVersion,
"org.tpolecat" %% "doobie-postgres" % DoobieVersion,
"org.tpolecat" %% "doobie-hikari" % DoobieVersion,
)