sbt/main/actions
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
..
AggressiveCompile.scala fix binary dependency recompilation problem introduced by fix for #108 2011-08-27 11:54:16 -04:00
CacheIvy.scala Support for simple exclusion rules in inline dependencies 2011-09-10 04:32:47 +05:30
Compiler.scala add 'skip' for manually overriding whether recompilation should occur. fixes #128 2011-07-26 13:34:01 -04:00
Console.scala Cache doc task 2011-04-20 18:31:10 -04:00
Doc.scala replace Path with RichFile 2011-05-14 18:21:41 -04:00
DotGraph.scala reorganize main 2011-04-08 19:15:13 -04:00
Package.scala Add well-known main manifest attributes by default for binary and source jars 2011-08-08 20:57:18 +05:30
Sync.scala Fixed reversed logic in fix for #125. 2011-07-26 09:25:57 -07:00
Tests.scala show test key in no tests message. fixes #102 2011-07-12 23:09:57 -04:00