Skip to content

Commit

Permalink
Remove blaze dependency from http4s module (#1110)
Browse files Browse the repository at this point in the history
* Remove blaze dependency from http4s module

* Add http4s-server

* empty commit

* Add blaze back for tests
  • Loading branch information
kubukoz authored Oct 22, 2021
1 parent 0256d3d commit 252c385
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -253,14 +253,15 @@ lazy val http4s = project
"dev.zio" %% "zio-interop-cats" % zioInteropCats3Version,
"org.typelevel" %% "cats-effect" % catsEffect3Version,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-server" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"io.circe" %% "circe-parser" % circeVersion,
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test,
"com.softwaremill.sttp.client3" %% "async-http-client-backend-zio" % sttpVersion % Test,
"com.softwaremill.sttp.client3" %% "circe" % sttpVersion % Test,
"io.circe" %% "circe-generic" % circeVersion % Test
"org.http4s" %% "http4s-blaze-server" % http4sVersion % Test,
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test,
"com.softwaremill.sttp.client3" %% "async-http-client-backend-zio" % sttpVersion % Test,
"com.softwaremill.sttp.client3" %% "circe" % sttpVersion % Test,
"io.circe" %% "circe-generic" % circeVersion % Test
)
)
.dependsOn(core, catsInterop)
Expand Down Expand Up @@ -400,6 +401,7 @@ lazy val examples = project
crossScalaVersions -= scala3,
libraryDependencies ++= Seq(
"de.heikoseeberger" %% "akka-http-circe" % "1.38.2",
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"com.softwaremill.sttp.client3" %% "async-http-client-backend-zio" % sttpVersion,
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion,
"io.circe" %% "circe-generic" % circeVersion,
Expand Down

0 comments on commit 252c385

Please sign in to comment.