Port project/circular

This commit is contained in:
Eugene Yokota 2016-03-29 01:48:40 -04:00
parent 174116b604
commit 32d21d0685
2 changed files with 5 additions and 18 deletions

View File

@ -0,0 +1,5 @@
lazy val root = (project in file(".")).
aggregate(LocalProject("sub"))
lazy val sub = project.
dependsOn(root)

View File

@ -1,18 +0,0 @@
import sbt._
import Keys._
import Import._
object Build extends Build {
lazy val root: Project = Project(
"root",
file("."),
aggregate = Seq(sub)
)
lazy val sub: Project = Project(
"sub",
file("sub"),
dependencies = Seq(root)
)
}