You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2016/04/11 00:15:14 UTC

svn commit: r1738474 - /maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml

Author: hboutemy
Date: Sun Apr 10 22:15:14 2016
New Revision: 1738474

URL: http://svn.apache.org/viewvc?rev=1738474&view=rev
Log:
[MSITE-771] improved faq entry about "mvn site" vs "mvn site:site"

Modified:
    maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml

Modified: maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml?rev=1738474&r1=1738473&r2=1738474&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml (original)
+++ maven/plugins/trunk/maven-site-plugin/src/site/fml/faq.fml Sun Apr 10 22:15:14 2016
@@ -23,15 +23,17 @@ under the License.
   <part id="General">
     <title>General</title>
     <faq id="What is the difference between mvn site and mvn site:site">
-      <question>What is the difference between <i>mvn site</i> and <i>mvn site:site</i>?</question>
+      <question>What is the difference between <code>mvn site</code> and <code>mvn site:site</code>?</question>
       <answer>
         <dl>
-          <dt>mvn site</dt>
+          <dt><code>mvn site</code></dt>
           <dd>
-            Calls the <i>site</i> phase of the site lifecycle, which consists in the following life cycle phases: <code>pre-site</code>, <code>site</code>, <code>post-site</code> and <code>site-deploy</code>.
-            See <a href="/guides/introduction/introduction-to-the-lifecycle.html#Lifecycle_Reference">Lifecycle Reference</a>.</dd>
-          <dt>mvn site:site</dt>
-          <dd>Calls the <i>site</i> goal of the site plugin.
+            Calls the <i>site</i> <b>phase</b> of the site <b>lifecycle</b>.
+            Full site lifecycle consists in the following life cycle phases: <code>pre-site</code>, <code>site</code>, <code>post-site</code> and <code>site-deploy</code>.
+            See <a href="/guides/introduction/introduction-to-the-lifecycle.html#Lifecycle_Reference">Lifecycle Reference</a>.
+            Then it calls plugin goals associated to <code>pre-site</code> and <code>site</code> phases.</dd>
+          <dt><code>mvn site:site</code></dt>
+          <dd>Calls the <i>site</i> <b>goal</b> of the site <b>plugin</b>.
             See <a href="site-mojo.html">site:site</a>.</dd>
         </dl>
       </answer>