We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0b8e90c + bfb6767 commit 8380c04Copy full SHA for 8380c04
project/Dependencies.scala
@@ -40,7 +40,11 @@ object Dependencies {
40
41
val cachecontrol = Seq("org.playframework" %% "cachecontrol" % "3.0.1")
42
43
- val asyncHttpClient = Seq("org.asynchttpclient" % "async-http-client" % "2.12.3")
+ val asyncHttpClient = Seq(
44
+ ("org.asynchttpclient" % "async-http-client" % "2.12.3") // 2.12.x comes with outdated netty-reactive-streams, so we ...
45
+ .exclude("com.typesafe.netty", "netty-reactive-streams"), // ... exclude it and pull in ...
46
+ "com.typesafe.netty" % "netty-reactive-streams" % "2.0.13", // ... a newer version ourselves (ahc v3 will drop that dependency)
47
+ )
48
49
val pekkoVersion = "1.0.3"
50
0 commit comments