Async DNS over TCP (#25690)

This commit is contained in:
Arnout Engelen 2018-10-16 15:35:55 +02:00 committed by GitHub
parent d71ba251ed
commit 23b7f86a06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 848 additions and 108 deletions

View file

@ -101,6 +101,9 @@ object Dependencies {
// in-memory filesystem for file related tests
val jimfs = "com.google.jimfs" % "jimfs" % "1.1" % "test" // ApacheV2
// docker utils
val dockerClient = "com.spotify" % "docker-client" % "8.13.1" % "test" // ApacheV2
// metrics, measurements, perf testing
val metrics = "io.dropwizard.metrics" % "metrics-core" % "3.2.5" % "test" // ApacheV2
val metricsJvm = "io.dropwizard.metrics" % "metrics-jvm" % "3.2.5" % "test" // ApacheV2
@ -147,8 +150,11 @@ object Dependencies {
val testkit = l ++= Seq(Test.junit, Test.scalatest.value) ++ Test.metricsAll
val actorTests = l ++= Seq(Test.junit, Test.scalatest.value, Test.commonsCodec, Test.commonsMath,
Test.mockito, Test.scalacheck.value, Test.jimfs)
val actorTests = l ++= Seq(
Test.junit, Test.scalatest.value, Test.commonsCodec, Test.commonsMath,
Test.mockito, Test.scalacheck.value, Test.jimfs,
Test.dockerClient
)
val actorTestkitTyped = l ++= Seq(Provided.junit, Provided.scalatest.value)