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 project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ object Dependencies {
val nettyVersion = "4.2.15.Final"

val netty = Seq(
"com.typesafe.netty" % "netty-reactive-streams-http" % "2.0.19",
"org.playframework.netty" % "netty-reactive-streams-http" % "3.1.0-M1",
("io.netty" % "netty-transport-native-epoll" % nettyVersion).classifier("linux-x86_64")
) ++ specs2Deps.map(_ % Test)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import akka.stream.scaladsl.Source
import com.typesafe.config.Config
import com.typesafe.config.ConfigMemorySize
import com.typesafe.config.ConfigValue
import com.typesafe.netty.HandlerPublisher
import com.typesafe.netty.http.HttpStreamsServerHandler
import org.playframework.netty.HandlerPublisher
import org.playframework.netty.http.HttpStreamsServerHandler
import io.netty.bootstrap.Bootstrap
import io.netty.channel.*
import io.netty.channel.epoll.EpollChannelOption
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import akka.stream.Materializer
import akka.stream.scaladsl.Sink
import akka.stream.scaladsl.Source
import akka.util.ByteString
import com.typesafe.netty.http.DefaultStreamedHttpResponse
import com.typesafe.netty.http.StreamedHttpRequest
import org.playframework.netty.http.DefaultStreamedHttpResponse
import org.playframework.netty.http.StreamedHttpRequest
import io.netty.buffer.ByteBuf
import io.netty.buffer.Unpooled
import io.netty.channel.Channel
Expand Down