Skip to content

Commit 8380c04

Browse files
authored
Merge pull request #958 from playframework/mergify/bp/3.0.x/pr-866
[3.0.x] Use latest netty-reactive-streams version, ahc comes with outdated one (backport #866) by @mkurz
2 parents 0b8e90c + bfb6767 commit 8380c04

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

project/Dependencies.scala

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ object Dependencies {
4040

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

43-
val asyncHttpClient = Seq("org.asynchttpclient" % "async-http-client" % "2.12.3")
43+
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+
)
4448

4549
val pekkoVersion = "1.0.3"
4650

0 commit comments

Comments
 (0)