Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ val common = library("common")
pekkoSlf4j,
pekkoSerializationJackson,
pekkoActorTyped,
) ++ jackson,
) ++ jackson ++ netty,
)

val commonWithTests = withTests(common)
Expand Down
6 changes: 6 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading