Async DNS over TCP (#25690)
This commit is contained in:
parent
d71ba251ed
commit
23b7f86a06
22 changed files with 848 additions and 108 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue