mirror of https://github.com/sbt/sbt.git
adding multi-project test
This commit is contained in:
parent
abc6d69271
commit
11fdf8e31c
|
|
@ -0,0 +1,3 @@
|
|||
lazy val root = (project in file(".")).aggregate(parent, child)
|
||||
lazy val parent = project
|
||||
lazy val child = project.dependsOn(parent)
|
||||
|
|
@ -0,0 +1 @@
|
|||
class Bar extends Foo
|
||||
|
|
@ -0,0 +1 @@
|
|||
class Foo
|
||||
|
|
@ -0,0 +1 @@
|
|||
> compile
|
||||
Loading…
Reference in New Issue