Skip to content

Commit

Permalink
Set to optional instead of provided
Browse files Browse the repository at this point in the history
  • Loading branch information
Fristi committed Mar 1, 2023
1 parent 4f3a12f commit 5caf6f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ lazy val http4sCe2Backend = (projectMatrix in file("http4s-ce2-backend"))
name := "http4s-ce2-backend",
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-client" % http4s_ce2_version,
"org.http4s" %% "http4s-blaze-client" % http4s_ce2_version % Provided
"org.http4s" %% "http4s-blaze-client" % http4s_ce2_version % Optional
)
)
.jvmPlatform(scalaVersions = scala2alive)
Expand All @@ -675,8 +675,8 @@ lazy val http4sBackend = (projectMatrix in file("http4s-backend"))
name := "http4s-backend",
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-client" % http4s_ce3_version,
"org.http4s" %% "http4s-ember-client" % "0.23.13" % Provided,
"org.http4s" %% "http4s-blaze-client" % "0.23.13" % Provided,
"org.http4s" %% "http4s-ember-client" % "0.23.13" % Optional,
"org.http4s" %% "http4s-blaze-client" % "0.23.13" % Optional,
),
evictionErrorLevel := Level.Info
)
Expand Down

0 comments on commit 5caf6f6

Please sign in to comment.