Skip to content

Commit

Permalink
Merge pull request #535 from http4s/remove-bouncycastle-problem
Browse files Browse the repository at this point in the history
exclude deps from proxyee in tests
  • Loading branch information
hamnis committed Aug 30, 2023
2 parents 6d9baa9 + 23edecb commit 5a14ca7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ lazy val core = project
.exclude("io.netty", "netty-codec-http")
.exclude("io.netty", "netty-handler"),
"io.netty" % "netty-codec-http" % netty,
"io.netty" % "netty-handler" % netty,
"org.http4s" %% "http4s-core" % http4sVersion,
"org.typelevel" %% "cats-effect" % "3.5.1"
)
Expand Down Expand Up @@ -106,7 +107,9 @@ lazy val client = project
"org.http4s" %% "http4s-ember-server" % http4sVersion % Test,
"org.http4s" %% "http4s-dsl" % http4sVersion % Test,
"org.scala-lang.modules" %% "scala-java8-compat" % "1.0.2" % Test,
"com.github.monkeywie" % "proxyee" % "1.7.6" % Test,
("com.github.monkeywie" % "proxyee" % "1.7.6" % Test)
.excludeAll("io.netty")
.excludeAll("org.bouncycastle"),
"com.github.bbottema" % "java-socks-proxy-server" % "2.0.0" % Test,
"org.scalameta" %% "munit" % munit % Test,
"ch.qos.logback" % "logback-classic" % "1.2.12" % Test,
Expand Down

0 comments on commit 5a14ca7

Please sign in to comment.