I have an sbt build with multi-project. Let call them a,b,c that have some dependency between each other
I would like to publish a single root artifact that contain a,b,c instead of having 3 different artifacts.
I did set the individual build.sbt publishArtifact to false but I do not know how to ask root to publish the big merged artifact.
lazy val a = project
lazy val b = project.dependsOn(a)
lazy val c = project.dependsOn(b)