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
sitethe previousinstallthen do the newinstallAnother simple exemple to prove it is to make a
mvn install cleanand you will see the result as all targets will be removed by the end of the build