Skip to content

Commit

Permalink
Merge pull request #866 from mkurz/netty-reactive-streams-latest
Browse files Browse the repository at this point in the history
Use latest netty-reactive-streams version, ahc comes with outdated one
  • Loading branch information
mkurz authored Jun 27, 2024
2 parents e58065a + d5da1fb commit e6c7c48
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ object Dependencies {

val cachecontrol = Seq("org.playframework" %% "cachecontrol" % "3.0.1")

val asyncHttpClient = Seq("org.asynchttpclient" % "async-http-client" % "2.12.3")
val asyncHttpClient = Seq(
("org.asynchttpclient" % "async-http-client" % "2.12.3") // 2.12.x comes with outdated netty-reactive-streams, so we ...
.exclude("com.typesafe.netty", "netty-reactive-streams"), // ... exclude it and pull in ...
"com.typesafe.netty" % "netty-reactive-streams" % "2.0.12", // ... a newer version ourselves (ahc v3 will drop that dependency)
)

val pekkoVersion = "1.0.3"

Expand Down

0 comments on commit e6c7c48

Please sign in to comment.