mirror of https://github.com/sbt/sbt.git
Port dependency-management/invalidate-internal
This commit is contained in:
parent
e57215e240
commit
7bc903446c
|
|
@ -0,0 +1,3 @@
|
|||
lazy val root = (project in file("."))
|
||||
lazy val a = project.dependsOn(b)
|
||||
lazy val b = project
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
import sbt._
|
||||
import Keys._
|
||||
import Import._
|
||||
|
||||
object P extends Build
|
||||
{
|
||||
lazy val root = Project("root", file("."))
|
||||
lazy val a = Project("a", file("a")) dependsOn(b)
|
||||
lazy val b = Project("b", file("b"))
|
||||
}
|
||||
Loading…
Reference in New Issue