mirror of https://github.com/sbt/sbt.git
Port project/console
This commit is contained in:
parent
e92324ead8
commit
cd0c5465d5
|
|
@ -0,0 +1,4 @@
|
|||
lazy val root = (project in file("."))
|
||||
lazy val sub1 = (project in file("sub1"))
|
||||
lazy val sub2 = (project in file("sub2"))
|
||||
lazy val sub3 = (project in file("sub3"))
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
import sbt._
|
||||
import Import._
|
||||
|
||||
object B extends Build
|
||||
{
|
||||
lazy val root = Project("root", file("."))
|
||||
lazy val sub1 = Project("sub1", file("sub1"))
|
||||
lazy val sub2 = Project("sub2", file("sub2"))
|
||||
lazy val sub3 = Project("sub3", file("sub3"))
|
||||
}
|
||||
Loading…
Reference in New Issue