You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a multi module project. When doing docker:publishLocal or docker:publish it produces a separate docker image for each module. I would like to have it only publish the root project which contains all the submodules as jars anyway.
The text was updated successfully, but these errors were encountered:
lazy val root = Project(
id = "some-project",
base = file("."))
.enablePlugins(PlayScala)
.dependsOn(a, b, c)
.aggregate(a, b, c)
.settings(aggregate in Docker := false)
I have a multi module project. When doing docker:publishLocal or docker:publish it produces a separate docker image for each module. I would like to have it only publish the root project which contains all the submodules as jars anyway.
The text was updated successfully, but these errors were encountered: