Skip to content

Commit

Permalink
Merge pull request #748 from http4s/slf4j-api-1.7
Browse files Browse the repository at this point in the history
Use logback-classic that implements slf4j-api 1.7
  • Loading branch information
hamnis authored Dec 30, 2024
2 parents 9fba29f + b76befb commit fa03dbd
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 @@ -13,7 +13,6 @@ inThisBuild(
),
licenses := Seq(License.Apache2),
tlBaseVersion := "0.5",
tlSonatypeUseLegacyHost := false,
crossScalaVersions := Seq(Scala213, Scala212, "3.3.4"),
ThisBuild / scalaVersion := Scala213,
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17"))
Expand Down Expand Up @@ -72,7 +71,7 @@ lazy val server = project
"org.eclipse.jetty.http2" % "jetty-http2-client-transport" % jetty % Test,
"org.http4s" %% "http4s-server" % http4sVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion % Test,
"ch.qos.logback" % "logback-classic" % "1.4.5" % Test,
"ch.qos.logback" % "logback-classic" % "1.2.13" % Test,
"org.scalameta" %% "munit" % munit % Test,
"org.scalameta" %% "munit-scalacheck" % munitScalaCheck % Test,
"org.http4s" %% "http4s-circe" % http4sVersion % Test,
Expand Down Expand Up @@ -115,7 +114,8 @@ lazy val client = project
("com.github.monkeywie" % "proxyee" % "1.7.6" % Test)
.excludeAll("io.netty")
.excludeAll("org.bouncycastle"),
"com.github.bbottema" % "java-socks-proxy-server" % "4.1.2" % Test,
("com.github.bbottema" % "java-socks-proxy-server" % "4.1.2" % Test)
.exclude("org.slf4j", "slf4j-api"),
"org.scalameta" %% "munit" % munit % Test,
"ch.qos.logback" % "logback-classic" % "1.2.13" % Test,
"org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test
Expand Down

0 comments on commit fa03dbd

Please sign in to comment.