-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (23 loc) · 1020 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
name := "wth-http4s"
version := "0.0.1-SNAPSHOT"
organization in ThisBuild := "io.funkyminds"
scalaVersion := "2.13.4"
scalacOptions := Seq("-unchecked", "-deprecation")
val circeVersion = "0.12.3"
val http4sVersion = "0.21.4"
val zioVersion = "1.0.3"
val zioConfigVersion = "1.0.0-RC29"
//@formatter:off
libraryDependencies ++= Seq(
"io.funkyminds" %% "wth-core" % "0.0.1-SNAPSHOT",
"dev.zio" %% "zio" % zioVersion,
"dev.zio" %% "zio-interop-cats" % "2.2.0.1",
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion
)
//@formatter:on