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.