diff --git a/build.sbt b/build.sbt index 21e2cf51a34e..3c29ede4199f 100644 --- a/build.sbt +++ b/build.sbt @@ -66,7 +66,7 @@ val common = library("common") pekkoSlf4j, pekkoSerializationJackson, pekkoActorTyped, - ) ++ jackson, + ) ++ jackson ++ netty, ) val commonWithTests = withTests(common) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 2cea69c9d83b..06f071e1f67e 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -103,6 +103,12 @@ object Dependencies { val epoch = "org.webjars.npm" % "epoch-charting" % "0.8.4" val d3 = "org.webjars.npm" % "d3" % "7.9.0" + val nettyVersion = "4.1.132.Final" + val netty = Seq( + "io.netty" % "netty-codec-http" % nettyVersion, + "io.netty" % "netty-codec-http2" % nettyVersion, + ) + /* The versions are currently set as they are because of: https://github.com/orgs/playframework/discussions/11222