mirror of https://github.com/sbt/sbt.git
fix project/transitive-plugins test
This commit is contained in:
parent
1546ff0175
commit
15b2d59c01
|
|
@ -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"))
|
||||
|
|
|
|||
Loading…
Reference in New Issue