reikje
reikje

Reputation: 3064

Is there a simple way to specify a global dependency exclude in SBT

How would you exclude a transitive dependency globally? My project depends on a lot of the Twitter libraries or on libraries that depend on the Twitter libraries. I don't want slf4j-jdk14 in my classpath, no matter what (I use logback as slf4j binding).

Currently I do this:

"com.twitter" %% "finagle-thriftmux" % "6.16.0" exclude("org.slf4j", "slf4j-jdk14")

but every time someone adds another dependency that uses slf4j-jdk14 I might get it back into the classpath.

Upvotes: 34

Views: 15934

Answers (3)

Daniel Olszewski
Daniel Olszewski

Reputation: 14411

Since sbt 0.13.8

In sbt 0.13.8 there is possibility to exclude dependencies globally. Here is a compact example:

excludeDependencies += "org.slf4j" % "slf4j-jdk14"

However, at the moment of writing this feature was marked as experimental so it's wise to be aware of older solution.

Before sbt 0.13.8

For a group of dependencies you can do it as follows:

libraryDependencies ++= Seq(
  "com.twitter" %% "finagle-thriftmux" % "6.16.0",
  "com.twitter" % "lib" % "2.0",
  "com.domain" % "some-other-lib" % "1.0"
).map(_.exclude("org.slf4j", "slf4j-jdk14"))

Upvotes: 50

Jeffrey Aguilera
Jeffrey Aguilera

Reputation: 1313

excludeDependencies += "org.slf4j" % "slf4j-jdk14"

Upvotes: 51

nafg
nafg

Reputation: 2534

libraryDependencies := libraryDependencies.value.map(_.exclude("groupid", "artifactname"))

Upvotes: 6

Related Questions