> On our CI system we want a complete site report in addition 
> to the regular clean & deploy goals so our build command is:
> mvn clean deploy site-deploy

Ok. You could try executing each command individually. ie:

mvn clean
mvn deploy
mvn site-deploy

Doing them all at once has different behaviour in that it will do a
clean, deploy, site-deploy on the parent, then a clean, deploy,
site-deploy on the first child, and so on.

I would also consider using the release-plugin which takes care of most
of this hassle.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to