Port dependency-management/invalidate-internal

This commit is contained in:
Eugene Yokota 2016-03-29 13:17:33 -04:00
parent e57215e240
commit 7bc903446c
2 changed files with 3 additions and 10 deletions

View File

@ -0,0 +1,3 @@
lazy val root = (project in file("."))
lazy val a = project.dependsOn(b)
lazy val b = project

View File

@ -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"))
}