This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
47 lines (43 loc) · 1.71 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
name := "zio-http4s"
ThisBuild / scalaVersion := "3.2.1"
ThisBuild / scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.5.0"
ThisBuild / semanticdbEnabled := true
addCommandAlias("fmt", "all scalafmtSbt scalafmtAll")
addCommandAlias("fix", "scalafixAll")
lazy val `zio-1` = project
.settings(
fork := true,
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.2.11",
"dev.zio" %% "izumi-reflect" % "2.1.3",
"dev.zio" %% "zio" % "1.0.16",
"dev.zio" %% "zio-interop-cats" % "13.0.0.0",
"org.http4s" %% "http4s-blaze-client" % "0.23.12",
"org.http4s" %% "http4s-blaze-server" % "0.23.12",
"org.http4s" %% "http4s-client" % "0.23.14",
"org.http4s" %% "http4s-core" % "0.23.14",
"org.http4s" %% "http4s-dsl" % "0.23.14",
"org.http4s" %% "http4s-server" % "0.23.14",
"org.typelevel" %% "cats-core" % "2.8.0",
"org.typelevel" %% "cats-effect-kernel" % "3.3.14"
)
)
lazy val `zio-2` = project
.settings(
fork := true,
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.2.11",
"dev.zio" %% "izumi-reflect" % "2.1.3",
"dev.zio" %% "zio" % "2.0.6",
"dev.zio" %% "zio-interop-cats" % "23.0.0.1",
"dev.zio" %% "zio-stacktracer" % "2.0.6",
"org.http4s" %% "http4s-blaze-client" % "0.23.12",
"org.http4s" %% "http4s-blaze-server" % "0.23.12",
"org.http4s" %% "http4s-client" % "0.23.14",
"org.http4s" %% "http4s-core" % "0.23.14",
"org.http4s" %% "http4s-dsl" % "0.23.14",
"org.http4s" %% "http4s-server" % "0.23.14",
"org.typelevel" %% "cats-core" % "2.8.0",
"org.typelevel" %% "cats-effect-kernel" % "3.3.14"
)
)