I have the following project structure:
lazy val root = project.aggregate(rest,backend)
lazy val rest = project
lazy val backend = project
When I execute the "run" task from the parent, I want a specific class from the "backend" project to have its main
method executed. How would I accomplish this?
dependsOn
from root tobackend
important? The last line seems to work for me, also without it (i.e.sbt clean
followed bysbt run
does the right thing). – Googly