You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ep...@apache.org on 2006/06/19 11:44:26 UTC

svn commit: r415271 - /maven/plugins/trunk/maven-site-plugin/src/site/apt/howto.apt

Author: epunzalan
Date: Mon Jun 19 02:44:25 2006
New Revision: 415271

URL: http://svn.apache.org/viewvc?rev=415271&view=rev
Log:
PR: MSITE-149

Changed <reporting> into <build> since the site plugin is a build plugin.

Modified:
    maven/plugins/trunk/maven-site-plugin/src/site/apt/howto.apt

Modified: maven/plugins/trunk/maven-site-plugin/src/site/apt/howto.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/site/apt/howto.apt?rev=415271&r1=415270&r2=415271&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/site/apt/howto.apt (original)
+++ maven/plugins/trunk/maven-site-plugin/src/site/apt/howto.apt Mon Jun 19 02:44:25 2006
@@ -36,8 +36,9 @@
   In your pom, just add something like this:
 
 -------------------
-  ...
-  <reporting>
+<project>
+  [...]
+  <build>
     <plugins>
       <plugin>
        <groupId>org.apache.maven.plugins</groupId>
@@ -48,8 +49,9 @@
        </configuration>
       </plugin>
     </plugins>
-  </reporting>
-  ...
+  </build>
+  [...]
+</project>
 -------------------
 
   And execute the site goal from your project.