aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Smith <zach@driver.xyz>2017-08-22 13:05:07 -0700
committerZach Smith <zach@driver.xyz>2017-08-22 13:05:07 -0700
commitd8932d000f6af3ab595ffdde43e7afb65759d80d (patch)
treee6c8a7008112cdc1be151d5bbf8135baad8955bf
parent90e756eb35a311c933876006a7b65e16e3fa2b65 (diff)
downloaddriver-core-d8932d000f6af3ab595ffdde43e7afb65759d80d.tar.gz
driver-core-d8932d000f6af3ab595ffdde43e7afb65759d80d.tar.bz2
driver-core-d8932d000f6af3ab595ffdde43e7afb65759d80d.zip
Add exclusion rule to docker-client dependency
-rw-r--r--build.sbt4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index dcb313a..eb17abf 100644
--- a/build.sbt
+++ b/build.sbt
@@ -22,5 +22,7 @@ lazy val core = (project in file("."))
"com.typesafe" % "config" % "1.2.1",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"ch.qos.logback" % "logback-classic" % "1.1.3",
- "com.spotify" % "docker-client" % "8.9.0" classifier "shaded"
+ "com.spotify" % "docker-client" % "8.9.0" classifier "shaded" excludeAll(
+ ExclusionRule(organization = "com.fasterxml.jackson.core")
+ )
))