Can I execute a Maven phase (say: deploy) without implicitly calling the previous ones?
The reason: I would like to construct something like install site-deploy (only-deploy)
to make sure that the deployment of the artifact only happens if all other phases/goals were successful. I cannot replace (only-deploy)
with deploy:deploy
because some projects which use this configuration have additional goals in the deploy phase.