Hi in a multi-module project it´s sometimes necessary to call Maven and pass the goals sequentially instead of passing all goals at once.
for site generation in a multi-module project 1.) mvn clean install 2.) mvn site-deploy is recommended, just 1.) mvn clean install site deploy doesn´t work properly. => what is best practice to encapsulate this or similar scenarios (thinking of Dashboard-maven-plugin) ? What i want is one short call, for example of a specially configured plugin , instead of 2 or more "manually" calls in the right order. If i couldn´t encapsulate this, each developer needs to know the right call order and our nightly build system (based on Luntbuild), too. Thanx in advance, Torsten
