in Maven - Coalescing Pipeline by
What would the command mvn clean dependency:copy-dependencies package do?

1 Answer

0 votes
by

This command will clean the project, copy the dependencies and package the project (executing all phases up to package).

...