Improve maven.multiproject.site.goals property doc to clarify that it is not additive, but overriding.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@488087 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jjensen 2006-12-18 00:27:34 +00:00
parent 59a67e5215
commit d5f32ed53b

View File

@ -207,10 +207,20 @@
<td>No</td> <td>No</td>
<td> <td>
<p> <p>
Defines the list of goals that should be executed when Defines the list of goals to execute on each subproject when
running <code>multiproject:site</code>. This is useful running <code>multiproject:site</code>.
if you need to run additional goals than <code>site</code> This property specifies the complete list of goals to run,
when generating the site. not in addition to any default ones.
</p>
<p>
This is useful when needing to run goals in addition to,
or other than, <code>site</code> on the subproject sites.
</p>
<p>
Note: when setting this property,
if you want <code>site</code> to run on the subprojects,
you must specify <code>site</code>
in the list of goals to execute.
</p> </p>
<p> <p>
Default value is <code>site</code>. Default value is <code>site</code>.