fix project/transitive-plugins test

This commit is contained in:
Mark Harrah 2012-03-13 08:01:58 -04:00
parent 1546ff0175
commit 15b2d59c01
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ object Build extends Build
sbtBinaryVersion <<= sbtVersion
)
lazy val root = Project("root", file(".")) aggregate(a,b,c)
lazy val root = Project("root", file(".")) aggregate(a,b,c) settings(
ivyPaths in ThisBuild <<= (baseDirectory, target)( (dir, t) => new IvyPaths(dir, Some(t / "ivy-cache")))
)
lazy val a = Project("a", file("a"))
lazy val b = Project("b", file("b"))
lazy val c = Project("c", file("c"))