I have two projects A
and B
in sibling directories. I know I can make A
depend on B
using RootProject
:
object A extends Build {
lazy val A = project in file(".") dependsOn(B)
lazy val B = RootProject(file("../B"))
}
But B
includes two core
and extensions
subprojects, and I want to depend on core
only. Is this possible?