From fd61fd6af0977750d723755471eb495b9df59929 Mon Sep 17 00:00:00 2001 From: danicheg Date: Wed, 3 Apr 2024 20:52:24 +0400 Subject: [PATCH] Add an explicit dependency on log4cats in tests --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index 80d6750..7540a14 100644 --- a/build.sbt +++ b/build.sbt @@ -24,6 +24,7 @@ val versions = new { val armeria = "1.27.2" val fs2 = "3.10.2" val http4s = "1.0.0-M41" + val log4cats = "2.6.0" val logback = "1.2.13" val micrometer = "1.9.2" val munit = "0.7.29" @@ -52,6 +53,7 @@ lazy val server = project "com.linecorp.armeria" % "armeria" % versions.armeria, "co.fs2" %% "fs2-reactive-streams" % versions.fs2, "org.http4s" %% "http4s-server" % versions.http4s, + "org.typelevel" %% "log4cats-slf4j" % versions.log4cats % Test, "ch.qos.logback" % "logback-classic" % versions.logback % Test, "org.http4s" %% "http4s-dsl" % versions.http4s % Test ) ++ munit