Is it possible, with SBT to use a flat directory structure for multimodules?
That is, instead of having:
- parent
|- child_a
|- child_b
to simply have:
- parent
- child_a
- child_b
I have tried the later and configured the parent project/Build.scala with:
lazy val child_a = Project(id = "child_a",
base = file("../child_a"))
But when doing an sbt command, like sbt package, I get to following error:
[error] java.lang.AssertionError: assertion failed: Directory D:\src\child_a is not contained in build root D:\src\parent
I don’t think this is possible.