Netty is not optional for multi jvm test kit (#27072)

* Netty is not optional for multi jvm test kit

Netty is used internally and is always loaded even if artery is enabled.
That could be improved but for now netty is needed.

This fixes the Akka HTTP against master build
This commit is contained in:
Christopher Batey 2019-06-05 10:22:26 +01:00 committed by GitHub
parent 937cbaf328
commit 72cfc2485e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,7 +193,7 @@ object Dependencies {
val remoteTests = l ++= Seq(Test.junit, Test.scalatest.value, Test.scalaXml) ++ remoteDependencies
val multiNodeTestkit = l ++= remoteOptionalDependencies
val multiNodeTestkit = l ++= Seq(netty)
val cluster = l ++= Seq(Test.junit, Test.scalatest.value)