Files
sbt/main
Indrajit Raychaudhuri bd8d1c0698 Support for simple exclusion rules in inline dependencies
This support excluding a library from the dependency tree for a given
set of `ExclusionRule`s. There are two ways to achieve this:

- Using `organization` and `name` pairs:
val dep = "org" % "name" % "version" exclude("commons-codec", "commons-codec") exclude("org.slf4j", "slf4j-log4j")

- Using `ExclusionRule`:
val dep = "org" % "name" % "version" excludeAll(ExclusionRule("commons-codec", "commons-codec"), ExclusionRule("org.slf4j", "slf4j-log4j"))
2011-09-10 04:32:47 +05:30
..
2011-05-23 18:40:03 -04:00
2011-05-07 22:02:06 -04:00
2011-08-31 20:59:40 -04:00
2011-05-31 18:37:07 -04:00
2010-09-21 22:00:11 -04:00
2011-05-14 18:21:41 -04:00