In Maven, does mvn site install
essentially the same as mvn install site
, or does the first one generate a site from the previous install
?
To be more precise: Is site
independent from install
or does site
include results that were generated from install
?
Maven executes the goals in the order you give it, so it will
site
the previousinstall
then do the newinstall
Another simple exemple to prove it is to make a
mvn install clean
and you will see the result as all targets will be removed by the end of the build