From 9b0a6e8003117c3919d5f8105d5c30e2ecc7a9a4 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Mon, 20 Apr 2020 16:58:26 +0200 Subject: [PATCH] Do not depend on the http4s blaze client --- project/ProjectPlugin.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/ProjectPlugin.scala b/project/ProjectPlugin.scala index b09106eef..82f8a8a53 100644 --- a/project/ProjectPlugin.scala +++ b/project/ProjectPlugin.scala @@ -77,11 +77,12 @@ object ProjectPlugin extends AutoPlugin { "io.circe" %% "circe-generic" % V.circe, "io.circe" %% "circe-literal" % V.circe, "com.github.marklister" %% "base64" % V.base64, - "org.http4s" %% "http4s-blaze-client" % V.http4s, + "org.http4s" %% "http4s-client" % V.http4s, "org.http4s" %% "http4s-circe" % V.http4s, "io.circe" %% "circe-parser" % V.circe % Test, "org.scalamock" %% "scalamock" % V.scalamock % Test, "org.scalatest" %% "scalatest" % V.scalatest % Test, + "org.http4s" %% "http4s-blaze-client" % V.http4s % Test, "com.github.ghik" % "silencer-lib" % V.silencer % Provided cross CrossVersion.full, compilerPlugin("com.github.ghik" % "silencer-plugin" % V.silencer cross CrossVersion.full) ),