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 2012/05/08 16:02:13 UTC

svn commit: r816667 [13/27] - in /websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest: ./ apidocs/ apidocs/org/apache/maven/plugin/checkstyle/ apidocs/org/apache/maven/plugin/checkstyle/class-use/ apidocs/org/apache/maven/plugi...

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/custom-developed-checkstyle.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/custom-developed-checkstyle.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/custom-developed-checkstyle.html Tue May  8 14:02:08 2012
@@ -1,8 +1,8 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Using Custom Developed Checkstyle Checks</title>
+    <title>Using Custom Developed Checkstyle Checks</title>
     <style type="text/css" media="all">
       @import url("../css/maven-base.css");
       @import url("../css/maven-theme.css");
@@ -10,10 +10,10 @@
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
         <meta name="author" content="2008-02-04" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -39,13 +39,13 @@
         &gt;
                   <a href="../../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                  <a href="../">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Using Custom Developed Checkstyle Checks
+    Using Custom Developed Checkstyle Checks
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -92,7 +92,7 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="../project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="../project-reports.html">Project Reports</a>
                   </li>
           </ul>
@@ -149,7 +149,8 @@
                 `-- mycompany
                     `-- checks
                         |-- packagenames.xml
-                        `-- MethodLimitCheck.java</pre></div><p>Now we'll go through each of the three files one at a time.</p><div class="section"><h4><tt>pom.xml</tt><a name="pom.xml"></a></h4><p>Not much to say here, except that we add a dependency on Checkstyle.</p><div class="source"><pre>&lt;project&gt;
+                        `-- MethodLimitCheck.java
+</pre></div><p>Now we'll go through each of the three files one at a time.</p><div class="section"><h4><tt>pom.xml</tt><a name="pom.xml"></a></h4><p>Not much to say here, except that we add a dependency on Checkstyle.</p><div class="source"><pre>&lt;project&gt;
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;groupId&gt;com.mycompany&lt;/groupId&gt;
   &lt;artifactId&gt;mycompany-checkstyle-checks&lt;/artifactId&gt;
@@ -159,10 +160,11 @@
     &lt;dependency&gt;
       &lt;groupId&gt;checkstyle&lt;/groupId&gt;
       &lt;artifactId&gt;checkstyle&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
     &lt;/dependency&gt;
   &lt;/dependencies&gt;
-&lt;/project&gt;</pre></div></div><div class="section"><h4><tt>packagenames.xml</tt><a name="packagenames.xml"></a></h4><p>This file lets you specify the names of the packages that you want to be able to use. Here we have added <tt>com.mycompany.checks</tt> to the standard set of Checkstyle packages. That means that you can use your custom checks in the Checkstyle configuration file, without having to specify their package name.</p><div class="source"><pre>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
+&lt;/project&gt;
+</pre></div></div><div class="section"><h4><tt>packagenames.xml</tt><a name="packagenames.xml"></a></h4><p>This file lets you specify the names of the packages that you want to be able to use. Here we have added <tt>com.mycompany.checks</tt> to the standard set of Checkstyle packages. That means that you can use your custom checks in the Checkstyle configuration file, without having to specify their package name.</p><div class="source"><pre>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
 
 &lt;!DOCTYPE checkstyle-packages PUBLIC
   &quot;-//Puppy Crawl//DTD Package Names 1.0//EN&quot;
@@ -189,7 +191,8 @@
     &lt;/package&gt;
     &lt;package name=&quot;filters&quot;/&gt;
   &lt;/package&gt;
-&lt;/checkstyle-packages&gt;</pre></div></div><div class="section"><h4><tt>MethodLimitCheck.java</tt><a name="MethodLimitCheck.java"></a></h4><p>Here is the example check from the Checkstyle site. It checks that your source files don't have more that 30 methods.</p><div class="source"><pre>package com.mycompany.checks;
+&lt;/checkstyle-packages&gt;
+</pre></div></div><div class="section"><h4><tt>MethodLimitCheck.java</tt><a name="MethodLimitCheck.java"></a></h4><p>Here is the example check from the Checkstyle site. It checks that your source files don't have more that 30 methods.</p><div class="source"><pre>package com.mycompany.checks;
 import com.puppycrawl.tools.checkstyle.api.*;
 
 public class MethodLimitCheck extends Check
@@ -214,7 +217,9 @@ public class MethodLimitCheck extends Ch
                 &quot;too many methods, only &quot; + max + &quot; are allowed&quot;);
         }
    }
-}</pre></div></div></div><div class="section"><h3>Building a JAR for your custom checks project<a name="Building_a_JAR_for_your_custom_checks_project"></a></h3><p>To be able to use your custom checks in other projects, you need to package and install them. To do that, just run this on the command line:</p><div class="source"><pre>mvn install</pre></div><p>This produces a JAR file with the following contents and installs it into your local repository.</p><div class="section"><h4><tt>mycompany-checkstyle-checks-1.0.jar</tt><a name="mycompany-checkstyle-checks-1.0.jar"></a></h4><div class="source"><pre>mycompany-checkstyle-checks-1.0.jar
+}
+</pre></div></div></div><div class="section"><h3>Building a JAR for your custom checks project<a name="Building_a_JAR_for_your_custom_checks_project"></a></h3><p>To be able to use your custom checks in other projects, you need to package and install them. To do that, just run this on the command line:</p><div class="source"><pre>mvn install
+</pre></div><p>This produces a JAR file with the following contents and installs it into your local repository.</p><div class="section"><h4><tt>mycompany-checkstyle-checks-1.0.jar</tt><a name="mycompany-checkstyle-checks-1.0.jar"></a></h4><div class="source"><pre>mycompany-checkstyle-checks-1.0.jar
 |-- pom.xml
 |-- META-INF
 |   |-- MANIFEST.MF
@@ -227,7 +232,8 @@ public class MethodLimitCheck extends Ch
     `-- mycompany
         `-- checks
             |-- packagenames.xml
-            `-- MethodLimitCheck.class</pre></div></div></div><div class="section"><h3>Using your checks in another project<a name="Using_your_checks_in_another_project"></a></h3><p>Now you are ready to make use of your custom checks in another project.</p><div class="section"><h4>Create a Checkstyle configuration<a name="Create_a_Checkstyle_configuration"></a></h4><p>Create the file <tt>checkstyle.xml</tt> in the root of the project that wants to use your custom checks. In this file you tell Checkstyle which checks you want to use.</p><p><b>Note:</b> We don't have to specify the fully qualified classname of our check here. That's because we used the <tt>packagenames.xml</tt> file earlier.</p><div class="source"><pre>&lt;?xml version=&quot;1.0&quot; ?&gt;
+            `-- MethodLimitCheck.class
+</pre></div></div></div><div class="section"><h3>Using your checks in another project<a name="Using_your_checks_in_another_project"></a></h3><p>Now you are ready to make use of your custom checks in another project.</p><div class="section"><h4>Create a Checkstyle configuration<a name="Create_a_Checkstyle_configuration"></a></h4><p>Create the file <tt>checkstyle.xml</tt> in the root of the project that wants to use your custom checks. In this file you tell Checkstyle which checks you want to use.</p><p><b>Note:</b> We don't have to specify the fully qualified classname of our check here. That's because we used the <tt>packagenames.xml</tt> file earlier.</p><div class="source"><pre>&lt;?xml version=&quot;1.0&quot; ?&gt;
 
 &lt;!DOCTYPE module PUBLIC
   &quot;-//Puppy Crawl//DTD Check Configuration 1.2//EN&quot;
@@ -237,14 +243,15 @@ public class MethodLimitCheck extends Ch
   &lt;module name=&quot;TreeWalker&quot;&gt;
     &lt;module name=&quot;MethodLimit&quot;/&gt;
   &lt;/module&gt;
-&lt;/module&gt;</pre></div></div><div class="section"><h4>Configure the Checkstyle Plugin to use your custom checks<a name="Configure_the_Checkstyle_Plugin_to_use_your_custom_checks"></a></h4><p>Finally we need to tell the other project that you want it to use your custom Checkstyle checks. In the <tt>pom.xml</tt> of that project, add the following configuration.</p><p><b>Note:</b> You have to specify a plugin dependency on <tt>mycompany-checkstyle-checks</tt> in the <tt>&lt;build&gt;</tt> element of your <tt>pom.xml</tt>. It will not work inside the <tt>&lt;reporting&gt;</tt> element, because <tt>&lt;reporting&gt;</tt> does not support plugin dependencies. The rest of the configuration is done in the normal way in the <tt>&lt;reporting&gt;</tt> element.</p><div class="source"><pre>&lt;project&gt;
+&lt;/module&gt;
+</pre></div></div><div class="section"><h4>Configure the Checkstyle Plugin to use your custom checks<a name="Configure_the_Checkstyle_Plugin_to_use_your_custom_checks"></a></h4><p>Finally we need to tell the other project that you want it to use your custom Checkstyle checks. In the <tt>pom.xml</tt> of that project, add the following configuration.</p><p><b>Note:</b> You have to specify a plugin dependency on <tt>mycompany-checkstyle-checks</tt> in the <tt>&lt;build&gt;</tt> element of your <tt>pom.xml</tt>. It will not work inside the <tt>&lt;reporting&gt;</tt> element, because <tt>&lt;reporting&gt;</tt> does not support plugin dependencies. The rest of the configuration is done in the normal way in the <tt>&lt;reporting&gt;</tt> element.</p><div class="source"><pre>&lt;project&gt;
   ...
   &lt;build&gt;
     &lt;plugins&gt;
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
         &lt;dependencies&gt;
           &lt;dependency&gt;
             &lt;groupId&gt;com.mycompany&lt;/groupId&gt;
@@ -260,7 +267,7 @@ public class MethodLimitCheck extends Ch
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
         &lt;configuration&gt;
           &lt;configLocation&gt;checkstyle.xml&lt;/configLocation&gt;
           &lt;packageNamesLocation&gt;com/mycompany/checks/packagenames.xml&lt;/packageNamesLocation&gt;
@@ -269,7 +276,8 @@ public class MethodLimitCheck extends Ch
     &lt;/plugins&gt;
   &lt;/reporting&gt;
   ...
-&lt;/project&gt;</pre></div></div></div></div>
+&lt;/project&gt;
+</pre></div></div></div></div>
       </div>
     </div>
     <div class="clear">

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/custom-property-expansion.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/custom-property-expansion.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/custom-property-expansion.html Tue May  8 14:02:08 2012
@@ -1,8 +1,8 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Using Custom Checkstyle Property Expansion Definitions</title>
+    <title>Using Custom Checkstyle Property Expansion Definitions</title>
     <style type="text/css" media="all">
       @import url("../css/maven-base.css");
       @import url("../css/maven-theme.css");
@@ -10,10 +10,10 @@
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
         <meta name="author" content="July 2006" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -39,13 +39,13 @@
         &gt;
                   <a href="../../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                  <a href="../">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Using Custom Checkstyle Property Expansion Definitions
+    Using Custom Checkstyle Property Expansion Definitions
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -92,7 +92,7 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="../project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="../project-reports.html">Project Reports</a>
                   </li>
           </ul>
@@ -153,14 +153,15 @@
          value=&quot;com\.example\.$\{projectname\}(\.[a-z][a-zA-Z0-9]+)*$&quot;/&gt;
     &lt;/module&gt;
   &lt;/module&gt;
-&lt;/module&gt;</pre></div><p>Example: <tt>pom.xml</tt> - Specifies the <tt>projectname</tt> property expansion that Checkstyle will use when encountering such a variable in the above Checker configuration.</p><div class="source"><pre>&lt;project&gt;
+&lt;/module&gt;
+</pre></div><p>Example: <tt>pom.xml</tt> - Specifies the <tt>projectname</tt> property expansion that Checkstyle will use when encountering such a variable in the above Checker configuration.</p><div class="source"><pre>&lt;project&gt;
   ...
   &lt;reporting&gt;
     &lt;plugins&gt;
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
         &lt;configuration&gt;
           &lt;configLocation&gt;checkstyle.xml&lt;/configLocation&gt;
           &lt;propertyExpansion&gt;projectname=whizbang&lt;/propertyExpansion&gt;
@@ -169,14 +170,15 @@
     &lt;/plugins&gt;
   &lt;/reporting&gt;
   ...
-&lt;/project&gt;</pre></div><p>The property expansion information can also come from a location using the <tt>propertiesLocation</tt> parameter as shown below. The <tt>propertiesLocation</tt> can point to a URL, File or build classpath resource reference.</p><div class="source"><pre>&lt;project&gt;
+&lt;/project&gt;
+</pre></div><p>The property expansion information can also come from a location using the <tt>propertiesLocation</tt> parameter as shown below. The <tt>propertiesLocation</tt> can point to a URL, File or build classpath resource reference.</p><div class="source"><pre>&lt;project&gt;
   ...
   &lt;reporting&gt;
     &lt;plugins&gt;
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
         &lt;configuration&gt;
           &lt;configLocation&gt;checkstyle.xml&lt;/configLocation&gt;
           &lt;propertesLocation&gt;${basedir}/checkstyle.properties&lt;/propertiesLocation&gt;
@@ -185,7 +187,8 @@
     &lt;/plugins&gt;
   &lt;/reporting&gt;
   ...
-&lt;/project&gt;</pre></div></div>
+&lt;/project&gt;
+</pre></div></div>
       </div>
     </div>
     <div class="clear">

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/multi-module-config.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/multi-module-config.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/multi-module-config.html Tue May  8 14:02:08 2012
@@ -1,8 +1,8 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Multimodule Configuration</title>
+    <title>Multimodule Configuration</title>
     <style type="text/css" media="all">
       @import url("../css/maven-base.css");
       @import url("../css/maven-theme.css");
@@ -10,10 +10,10 @@
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
         <meta name="author" content="2008-02-05" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -39,13 +39,13 @@
         &gt;
                   <a href="../../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                  <a href="../">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Multimodule Configuration
+    Multimodule Configuration
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -92,7 +92,7 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="../project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="../project-reports.html">Project Reports</a>
                   </li>
           </ul>
@@ -148,7 +148,8 @@
 |   `-- pom.xml
 |-- jmx
 |   `-- pom.xml
-`-- src</pre></div><div class="section"><h3>Create a subproject to house the resources<a name="Create_a_subproject_to_house_the_resources"></a></h3><p>We'll start by adding another sub project that will house our common configuration. Let's call it <i>build-tools</i>. In it we put the resources that we want to include. In this example, we will add configuration files for the Checkstyle Plugin. Configuration files for other plugins, like the PMD plugin, can be included in the same subproject if you like.</p><div class="source"><pre>whizbang
+`-- src
+</pre></div><div class="section"><h3>Create a subproject to house the resources<a name="Create_a_subproject_to_house_the_resources"></a></h3><p>We'll start by adding another sub project that will house our common configuration. Let's call it <i>build-tools</i>. In it we put the resources that we want to include. In this example, we will add configuration files for the Checkstyle Plugin. Configuration files for other plugins, like the PMD plugin, can be included in the same subproject if you like.</p><div class="source"><pre>whizbang
 |-- pom.xml
 |-- build-tools
 |   |-- src
@@ -161,7 +162,8 @@
 |-- core
 |-- gui
 |-- jmx
-`-- src</pre></div><p><b>Tip:</b> put the resources into a subdirectory that you can ensure will be unique and not conflict with anyone else.</p></div><div class="section"><h3>Configure the other projects to use it<a name="Configure_the_other_projects_to_use_it"></a></h3><p>Now we can include the Checkstyle configuration in the top level <tt>pom.xml</tt>.</p><p><b>Note:</b> You have to specify a plugin dependency on <tt>build-tools</tt> in the <tt>&lt;build&gt;</tt> element of your <tt>pom.xml</tt>. It will not work inside the <tt>&lt;reporting&gt;</tt> element, because <tt>&lt;reporting&gt;</tt> does not support plugin dependencies. The rest of the configuration is done in the normal way in the <tt>&lt;reporting&gt;</tt> element.</p><div class="source"><pre>&lt;project&gt;
+`-- src
+</pre></div><p><b>Tip:</b> put the resources into a subdirectory that you can ensure will be unique and not conflict with anyone else.</p></div><div class="section"><h3>Configure the other projects to use it<a name="Configure_the_other_projects_to_use_it"></a></h3><p>Now we can include the Checkstyle configuration in the top level <tt>pom.xml</tt>.</p><p><b>Note:</b> You have to specify a plugin dependency on <tt>build-tools</tt> in the <tt>&lt;build&gt;</tt> element of your <tt>pom.xml</tt>. It will not work inside the <tt>&lt;reporting&gt;</tt> element, because <tt>&lt;reporting&gt;</tt> does not support plugin dependencies. The rest of the configuration is done in the normal way in the <tt>&lt;reporting&gt;</tt> element.</p><div class="source"><pre>&lt;project&gt;
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;groupId&gt;com.example.whizbang&lt;/groupId&gt;
   &lt;artifactId&gt;whizbang-parent&lt;/artifactId&gt;
@@ -173,7 +175,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
         &lt;dependencies&gt;
           &lt;dependency&gt;
             &lt;groupId&gt;com.example.whizbang&lt;/groupId&gt;
@@ -189,7 +191,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
         &lt;configuration&gt;
           &lt;configLocation&gt;whizbang/checkstyle.xml&lt;/configLocation&gt;
           &lt;headerLocation&gt;whizbang/LICENSE.txt&lt;/headerLocation&gt;
@@ -203,7 +205,9 @@
     &lt;module&gt;jmx&lt;/module&gt;
     &lt;module&gt;gui&lt;/module&gt;
   &lt;/modules&gt;
-&lt;/project&gt;</pre></div><p>Once you are done with that, ensure that you do not include the Maven Checkstyle Plugin in your sub modules, as their definition and configuration, will override the top level parent pom's definition.</p><p>Based on the Checkstyle Plugin configuration above, the values of <tt>configLocation</tt> and <tt>headerLocation</tt> will be resolved from the classpath. The <i>build-tools</i> JAR was included in the classpath when it was declared as a dependency to the plugin.</p><p>Lastly, kick off a build of the site.</p><div class="source"><pre>mvn site</pre></div><p>Every sub project will now use the same Checkstyle setup and configuration.</p></div></div>
+&lt;/project&gt;
+</pre></div><p>Once you are done with that, ensure that you do not include the Maven Checkstyle Plugin in your sub modules, as their definition and configuration, will override the top level parent pom's definition.</p><p>Based on the Checkstyle Plugin configuration above, the values of <tt>configLocation</tt> and <tt>headerLocation</tt> will be resolved from the classpath. The <i>build-tools</i> JAR was included in the classpath when it was declared as a dependency to the plugin.</p><p>Lastly, kick off a build of the site.</p><div class="source"><pre>mvn site
+</pre></div><p>Every sub project will now use the same Checkstyle setup and configuration.</p></div></div>
       </div>
     </div>
     <div class="clear">

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/suppressions-filter.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/suppressions-filter.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/examples/suppressions-filter.html Tue May  8 14:02:08 2012
@@ -1,8 +1,8 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Using a Suppressions Filter</title>
+    <title>Using a Suppressions Filter</title>
     <style type="text/css" media="all">
       @import url("../css/maven-base.css");
       @import url("../css/maven-theme.css");
@@ -10,10 +10,10 @@
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
         <meta name="author" content="July 2006" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -39,13 +39,13 @@
         &gt;
                   <a href="../../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                  <a href="../">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Using a Suppressions Filter
+    Using a Suppressions Filter
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -92,7 +92,7 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="../project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="../project-reports.html">Project Reports</a>
                   </li>
           </ul>
@@ -153,14 +153,15 @@
   &lt;suppress checks=&quot;MagicNumberCheck&quot;
              files=&quot;LegacyDatasetConvertor.java&quot;
              lines=&quot;221,250-295&quot;/&gt;
-&lt;/suppressions&gt;</pre></div><p>Example: <tt>pom.xml</tt> - Specifies the suppressions filter that Checkstyle should use.</p><div class="source"><pre>&lt;project&gt;
+&lt;/suppressions&gt;
+</pre></div><p>Example: <tt>pom.xml</tt> - Specifies the suppressions filter that Checkstyle should use.</p><div class="source"><pre>&lt;project&gt;
   ...
   &lt;reporting&gt;
     &lt;plugins&gt;
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
         &lt;configuration&gt;
           &lt;configLocation&gt;checkstyle.xml&lt;/configLocation&gt;
           &lt;suppressionsLocation&gt;checkstyle-suppressions.xml&lt;/suppressionsLocation&gt;
@@ -170,7 +171,8 @@
     &lt;/plugins&gt;
   &lt;/reporting&gt;
   ...
-&lt;/project&gt;</pre></div></div>
+&lt;/project&gt;
+</pre></div></div>
       </div>
     </div>
     <div class="clear">

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/faq.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/faq.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/faq.html Tue May  8 14:02:08 2012
@@ -1,18 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Frequently Asked Questions</title>
+    <title>Frequently Asked Questions</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -38,13 +38,13 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Frequently Asked Questions
+    Frequently Asked Questions
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -91,7 +91,7 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="project-reports.html">Project Reports</a>
                   </li>
           </ul>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/help-mojo.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/help-mojo.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/help-mojo.html Tue May  8 14:02:08 2012
@@ -1,8 +1,8 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - 
+    <title>
     checkstyle:help</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
@@ -10,10 +10,10 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -39,14 +39,14 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - 
+    
     checkstyle:help
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -93,7 +93,7 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="project-reports.html">Project Reports</a>
                   </li>
           </ul>
@@ -145,7 +145,7 @@
   
     <div class="section"><h2>checkstyle:help<a name="checkstyle:help"></a></h2>
       <p><b>Full name</b>:</p>
-      <p>org.apache.maven.plugins:maven-checkstyle-plugin:2.7:help</p>
+      <p>org.apache.maven.plugins:maven-checkstyle-plugin:2.8:help</p>
       <p><b>Description</b>:</p>
       <div>Display help information on maven-checkstyle-plugin.<br />
  Call 

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/index.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/index.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/index.html Tue May  8 14:02:08 2012
@@ -1,8 +1,8 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Introduction</title>
+    <title>Introduction</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -11,10 +11,10 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta name="author" content="Maria Odea Ching" />
         <meta name="Date-Creation-yyyymmdd" content="20110801" />
-    <meta name="Date-Revision-yyyymmdd" content="20110808" />
+    <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -40,13 +40,13 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Introduction
+    Introduction
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -93,35 +93,35 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                                    <li class="expanded">
+                                                                                                                                                                                                                                                                                                      <li class="expanded">
                   <a href="project-reports.html">Project Reports</a>
                     <ul>
                       <li class="none">
-                  <a href="checkstyle.html">Checkstyle</a>
+                  <a href="plugin-info.html">Plugin Documentation</a>
             </li>
                       <li class="none">
             <strong>Cobertura Test Coverage</strong>
           </li>
                       <li class="none">
-                  <a href="cpd.html">CPD Report</a>
+                  <a href="surefire-report.html">Surefire Report</a>
             </li>
                       <li class="none">
-                  <a href="apidocs/index.html">JavaDocs</a>
+                  <a href="checkstyle.html">Checkstyle</a>
             </li>
                       <li class="none">
-                  <a href="l10n-status.html">L10n Status</a>
+                  <a href="checkstyle-aggregate.html">Checkstyle</a>
             </li>
                       <li class="none">
-                  <a href="plugin-info.html">Plugin Documentation</a>
+                  <a href="pmd.html">PMD Report</a>
             </li>
                       <li class="none">
-                  <a href="pmd.html">PMD Report</a>
+                  <a href="cpd.html">CPD Report</a>
             </li>
                       <li class="none">
-                  <a href="xref/index.html">Source Xref</a>
+                  <a href="xref-test/index.html">Test Source Xref</a>
             </li>
                       <li class="none">
-                  <a href="surefire-report.html">Surefire Report</a>
+                  <a href="xref/index.html">Source Xref</a>
             </li>
                       <li class="none">
                   <a href="taglist.html">Tag List</a>
@@ -130,7 +130,10 @@
                   <a href="testapidocs/index.html">Test JavaDocs</a>
             </li>
                       <li class="none">
-                  <a href="xref-test/index.html">Test Source Xref</a>
+                  <a href="apidocs/index.html">JavaDocs</a>
+            </li>
+                      <li class="none">
+                  <a href="l10n-status.html">L10n Status</a>
             </li>
               </ul>
         </li>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/integration.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/integration.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/integration.html Tue May  8 14:02:08 2012
@@ -1,18 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Continuous Integration</title>
+    <title>Continuous Integration</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -38,13 +38,13 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Continuous Integration
+    Continuous Integration
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -92,22 +92,16 @@
                   <a href="project-info.html">Project Information</a>
                     <ul>
                       <li class="none">
-            <strong>Continuous Integration</strong>
-          </li>
-                      <li class="none">
-                  <a href="dependencies.html">Dependencies</a>
+                  <a href="source-repository.html">Source Repository</a>
             </li>
                       <li class="none">
-                  <a href="issue-tracking.html">Issue Tracking</a>
+                  <a href="plugin-management.html">Plugin Management</a>
             </li>
                       <li class="none">
                   <a href="mail-lists.html">Mailing Lists</a>
             </li>
                       <li class="none">
-                  <a href="plugin-management.html">Plugin Management</a>
-            </li>
-                      <li class="none">
-                  <a href="license.html">Project License</a>
+                  <a href="issue-tracking.html">Issue Tracking</a>
             </li>
                       <li class="none">
                   <a href="plugins.html">Project Plugins</a>
@@ -116,14 +110,20 @@
                   <a href="project-summary.html">Project Summary</a>
             </li>
                       <li class="none">
-                  <a href="team-list.html">Project Team</a>
+                  <a href="dependencies.html">Dependencies</a>
             </li>
                       <li class="none">
-                  <a href="source-repository.html">Source Repository</a>
+                  <a href="license.html">Project License</a>
             </li>
+                      <li class="none">
+                  <a href="team-list.html">Project Team</a>
+            </li>
+                      <li class="none">
+            <strong>Continuous Integration</strong>
+          </li>
               </ul>
         </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="project-reports.html">Project Reports</a>
                   </li>
           </ul>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/issue-tracking.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/issue-tracking.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/issue-tracking.html Tue May  8 14:02:08 2012
@@ -1,18 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Issue Tracking</title>
+    <title>Issue Tracking</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -38,13 +38,13 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Issue Tracking
+    Issue Tracking
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -92,38 +92,38 @@
                   <a href="project-info.html">Project Information</a>
                     <ul>
                       <li class="none">
-                  <a href="integration.html">Continuous Integration</a>
+                  <a href="source-repository.html">Source Repository</a>
             </li>
                       <li class="none">
-                  <a href="dependencies.html">Dependencies</a>
+                  <a href="plugin-management.html">Plugin Management</a>
             </li>
                       <li class="none">
-            <strong>Issue Tracking</strong>
-          </li>
-                      <li class="none">
                   <a href="mail-lists.html">Mailing Lists</a>
             </li>
                       <li class="none">
-                  <a href="plugin-management.html">Plugin Management</a>
+            <strong>Issue Tracking</strong>
+          </li>
+                      <li class="none">
+                  <a href="plugins.html">Project Plugins</a>
             </li>
                       <li class="none">
-                  <a href="license.html">Project License</a>
+                  <a href="project-summary.html">Project Summary</a>
             </li>
                       <li class="none">
-                  <a href="plugins.html">Project Plugins</a>
+                  <a href="dependencies.html">Dependencies</a>
             </li>
                       <li class="none">
-                  <a href="project-summary.html">Project Summary</a>
+                  <a href="license.html">Project License</a>
             </li>
                       <li class="none">
                   <a href="team-list.html">Project Team</a>
             </li>
                       <li class="none">
-                  <a href="source-repository.html">Source Repository</a>
+                  <a href="integration.html">Continuous Integration</a>
             </li>
               </ul>
         </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="project-reports.html">Project Reports</a>
                   </li>
           </ul>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/l10n-status.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/l10n-status.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/l10n-status.html Tue May  8 14:02:08 2012
@@ -1,18 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - L10n Status</title>
+    <title>L10n Status</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -38,13 +38,13 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - L10n Status
+    L10n Status
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -91,35 +91,35 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                                    <li class="expanded">
+                                                                                                                                                                                                                                                                                                      <li class="expanded">
                   <a href="project-reports.html">Project Reports</a>
                     <ul>
                       <li class="none">
-                  <a href="checkstyle.html">Checkstyle</a>
+                  <a href="plugin-info.html">Plugin Documentation</a>
             </li>
                       <li class="none">
                   <a href="index.html">Cobertura Test Coverage</a>
             </li>
                       <li class="none">
-                  <a href="cpd.html">CPD Report</a>
+                  <a href="surefire-report.html">Surefire Report</a>
             </li>
                       <li class="none">
-                  <a href="apidocs/index.html">JavaDocs</a>
+                  <a href="checkstyle.html">Checkstyle</a>
             </li>
                       <li class="none">
-            <strong>L10n Status</strong>
-          </li>
-                      <li class="none">
-                  <a href="plugin-info.html">Plugin Documentation</a>
+                  <a href="checkstyle-aggregate.html">Checkstyle</a>
             </li>
                       <li class="none">
                   <a href="pmd.html">PMD Report</a>
             </li>
                       <li class="none">
-                  <a href="xref/index.html">Source Xref</a>
+                  <a href="cpd.html">CPD Report</a>
             </li>
                       <li class="none">
-                  <a href="surefire-report.html">Surefire Report</a>
+                  <a href="xref-test/index.html">Test Source Xref</a>
+            </li>
+                      <li class="none">
+                  <a href="xref/index.html">Source Xref</a>
             </li>
                       <li class="none">
                   <a href="taglist.html">Tag List</a>
@@ -128,8 +128,11 @@
                   <a href="testapidocs/index.html">Test JavaDocs</a>
             </li>
                       <li class="none">
-                  <a href="xref-test/index.html">Test Source Xref</a>
+                  <a href="apidocs/index.html">JavaDocs</a>
             </li>
+                      <li class="none">
+            <strong>L10n Status</strong>
+          </li>
               </ul>
         </li>
           </ul>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/license.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/license.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/license.html Tue May  8 14:02:08 2012
@@ -1,18 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Project License</title>
+    <title>Project License</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -38,13 +38,13 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Project License
+    Project License
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -92,38 +92,38 @@
                   <a href="project-info.html">Project Information</a>
                     <ul>
                       <li class="none">
-                  <a href="integration.html">Continuous Integration</a>
-            </li>
-                      <li class="none">
-                  <a href="dependencies.html">Dependencies</a>
+                  <a href="source-repository.html">Source Repository</a>
             </li>
                       <li class="none">
-                  <a href="issue-tracking.html">Issue Tracking</a>
+                  <a href="plugin-management.html">Plugin Management</a>
             </li>
                       <li class="none">
                   <a href="mail-lists.html">Mailing Lists</a>
             </li>
                       <li class="none">
-                  <a href="plugin-management.html">Plugin Management</a>
+                  <a href="issue-tracking.html">Issue Tracking</a>
             </li>
                       <li class="none">
-            <strong>Project License</strong>
-          </li>
-                      <li class="none">
                   <a href="plugins.html">Project Plugins</a>
             </li>
                       <li class="none">
                   <a href="project-summary.html">Project Summary</a>
             </li>
                       <li class="none">
+                  <a href="dependencies.html">Dependencies</a>
+            </li>
+                      <li class="none">
+            <strong>Project License</strong>
+          </li>
+                      <li class="none">
                   <a href="team-list.html">Project Team</a>
             </li>
                       <li class="none">
-                  <a href="source-repository.html">Source Repository</a>
+                  <a href="integration.html">Continuous Integration</a>
             </li>
               </ul>
         </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="project-reports.html">Project Reports</a>
                   </li>
           </ul>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/mail-lists.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/mail-lists.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/mail-lists.html Tue May  8 14:02:08 2012
@@ -1,18 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Project Mailing Lists</title>
+    <title>Project Mailing Lists</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -38,13 +38,13 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Project Mailing Lists
+    Project Mailing Lists
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -92,22 +92,16 @@
                   <a href="project-info.html">Project Information</a>
                     <ul>
                       <li class="none">
-                  <a href="integration.html">Continuous Integration</a>
-            </li>
-                      <li class="none">
-                  <a href="dependencies.html">Dependencies</a>
+                  <a href="source-repository.html">Source Repository</a>
             </li>
                       <li class="none">
-                  <a href="issue-tracking.html">Issue Tracking</a>
+                  <a href="plugin-management.html">Plugin Management</a>
             </li>
                       <li class="none">
             <strong>Mailing Lists</strong>
           </li>
                       <li class="none">
-                  <a href="plugin-management.html">Plugin Management</a>
-            </li>
-                      <li class="none">
-                  <a href="license.html">Project License</a>
+                  <a href="issue-tracking.html">Issue Tracking</a>
             </li>
                       <li class="none">
                   <a href="plugins.html">Project Plugins</a>
@@ -116,14 +110,20 @@
                   <a href="project-summary.html">Project Summary</a>
             </li>
                       <li class="none">
+                  <a href="dependencies.html">Dependencies</a>
+            </li>
+                      <li class="none">
+                  <a href="license.html">Project License</a>
+            </li>
+                      <li class="none">
                   <a href="team-list.html">Project Team</a>
             </li>
                       <li class="none">
-                  <a href="source-repository.html">Source Repository</a>
+                  <a href="integration.html">Continuous Integration</a>
             </li>
               </ul>
         </li>
-                                                                                                                                                                                                                                                                          <li class="collapsed">
+                                                                                                                                                                                                                                                                                            <li class="collapsed">
                   <a href="project-reports.html">Project Reports</a>
                   </li>
           </ul>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/plugin-info.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/plugin-info.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/plugin-info.html Tue May  8 14:02:08 2012
@@ -1,18 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Aug 8, 2011 -->
+<!-- Generated by Apache Maven Doxia at Oct 24, 2011 -->
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Checkstyle Plugin - Plugin Documentation</title>
+    <title>Plugin Documentation</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-        <meta name="Date-Revision-yyyymmdd" content="20110808" />
+        <meta name="Date-Revision-yyyymmdd" content="20111024" />
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -38,13 +38,13 @@
         &gt;
                   <a href="../index.html">Plugins</a>
         &gt;
-                  <a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/" class="externalLink">Maven Checkstyle Plugin</a>
+                      <a href="./">Maven Checkstyle Plugin</a>
         &gt;
-    Maven Checkstyle Plugin - Plugin Documentation
+    Plugin Documentation
       </div>
             <div class="xright">        
-                                 Last Published: 2011-08-08
-              &nbsp;| Version: 2.7
+                                 Last Published: 2011-10-24
+              &nbsp;| Version: 2.8
             </div>
       <div class="clear">
         <hr/>
@@ -91,35 +91,35 @@
                                                                                                                                                                                                                                       <li class="collapsed">
                   <a href="project-info.html">Project Information</a>
                   </li>
-                                                                                                                                                                                                                                                                                    <li class="expanded">
+                                                                                                                                                                                                                                                                                                      <li class="expanded">
                   <a href="project-reports.html">Project Reports</a>
                     <ul>
                       <li class="none">
-                  <a href="checkstyle.html">Checkstyle</a>
-            </li>
+            <strong>Plugin Documentation</strong>
+          </li>
                       <li class="none">
                   <a href="index.html">Cobertura Test Coverage</a>
             </li>
                       <li class="none">
-                  <a href="cpd.html">CPD Report</a>
+                  <a href="surefire-report.html">Surefire Report</a>
             </li>
                       <li class="none">
-                  <a href="apidocs/index.html">JavaDocs</a>
+                  <a href="checkstyle.html">Checkstyle</a>
             </li>
                       <li class="none">
-                  <a href="l10n-status.html">L10n Status</a>
+                  <a href="checkstyle-aggregate.html">Checkstyle</a>
             </li>
                       <li class="none">
-            <strong>Plugin Documentation</strong>
-          </li>
-                      <li class="none">
                   <a href="pmd.html">PMD Report</a>
             </li>
                       <li class="none">
-                  <a href="xref/index.html">Source Xref</a>
+                  <a href="cpd.html">CPD Report</a>
             </li>
                       <li class="none">
-                  <a href="surefire-report.html">Surefire Report</a>
+                  <a href="xref-test/index.html">Test Source Xref</a>
+            </li>
+                      <li class="none">
+                  <a href="xref/index.html">Source Xref</a>
             </li>
                       <li class="none">
                   <a href="taglist.html">Tag List</a>
@@ -128,7 +128,10 @@
                   <a href="testapidocs/index.html">Test JavaDocs</a>
             </li>
                       <li class="none">
-                  <a href="xref-test/index.html">Test Source Xref</a>
+                  <a href="apidocs/index.html">JavaDocs</a>
+            </li>
+                      <li class="none">
+                  <a href="l10n-status.html">L10n Status</a>
             </li>
               </ul>
         </li>
@@ -180,13 +183,14 @@
         <a name="Plugin_Documentation"></a><div class="section"><h2>Plugin Documentation<a name="Plugin_Documentation"></a></h2><p>Goals available for this plugin:</p><table border="0" class="bodyTable"><tr class="a"><th>Goal</th><th>Report?</th><th>Description</th></tr><tr class="b"><td><a href="check-mojo.html">checkstyle:check</a></td><td>No</td><td>Perform a violation check against the last Checkstyle run to see if
 there are any violations. It reads the Checkstyle output file,
 counts the number of violations found and displays it on the
-console.</td></tr><tr class="a"><td><a href="checkstyle-mojo.html">checkstyle:checkstyle</a></td><td>Yes</td><td>Perform a Checkstyle analysis, and generate a report on violations.</td></tr><tr class="b"><td><a href="help-mojo.html">checkstyle:help</a></td><td>No</td><td>Display help information on maven-checkstyle-plugin.<br />
+console.</td></tr><tr class="a"><td><a href="checkstyle-mojo.html">checkstyle:checkstyle</a></td><td>Yes</td><td>Perform a Checkstyle analysis, and generate a report on violations.</td></tr><tr class="b"><td><a href="checkstyle-aggregate-mojo.html">checkstyle:checkstyle-aggregate</a></td><td>Yes</td><td>Perform a Checkstyle analysis, and generate a report on violations,
+aggregating the result in the project which started this mojo.</td></tr><tr class="a"><td><a href="help-mojo.html">checkstyle:help</a></td><td>No</td><td>Display help information on maven-checkstyle-plugin.<br />
  Call 
 <pre>
   mvn checkstyle:help -Ddetail=true -Dgoal=&lt;goal-name&gt;
 </pre>
 
-to display parameter details.</td></tr></table><a name="System_Requirements"></a><div class="section"><h3>System Requirements<a name="System_Requirements"></a></h3><p>The following specifies the minimum requirements to run this Maven plugin:</p><table border="0" class="bodyTable"><tr class="a"><td>Maven</td><td>2.0.6</td></tr><tr class="b"><td>JDK</td><td>1.5</td></tr><tr class="a"><td>Memory</td><td>No minimum requirement.</td></tr><tr class="b"><td>Disk Space</td><td>No minimum requirement.</td></tr></table></div><a name="Usage"></a><div class="section"><h3>Usage<a name="Usage"></a></h3><p>You should specify the version in your project's plugin configuration:</p><div class="source"><pre>&lt;project&gt;
+to display parameter details.</td></tr></table><a name="System_Requirements"></a><div class="section"><h3>System Requirements<a name="System_Requirements"></a></h3><p>The following specifies the minimum requirements to run this Maven plugin:</p><table border="0" class="bodyTable"><tr class="b"><td>Maven</td><td>2.0.6</td></tr><tr class="a"><td>JDK</td><td>1.5</td></tr><tr class="b"><td>Memory</td><td>No minimum requirement.</td></tr><tr class="a"><td>Disk Space</td><td>No minimum requirement.</td></tr></table></div><a name="Usage"></a><div class="section"><h3>Usage<a name="Usage"></a></h3><p>You should specify the version in your project's plugin configuration:</p><div class="source"><pre>&lt;project&gt;
   ...
   &lt;build&gt;
     &lt;!-- To define the plugin version in your parent POM --&gt;
@@ -195,7 +199,7 @@ to display parameter details.</td></tr><
         &lt;plugin&gt;
           &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
           &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-          &lt;version&gt;2.7&lt;/version&gt;
+          &lt;version&gt;2.8&lt;/version&gt;
         &lt;/plugin&gt;
         ...
       &lt;/plugins&gt;
@@ -205,7 +209,7 @@ to display parameter details.</td></tr><
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
       &lt;/plugin&gt;
       ...
     &lt;/plugins&gt;
@@ -217,7 +221,7 @@ to display parameter details.</td></tr><
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
-        &lt;version&gt;2.7&lt;/version&gt;
+        &lt;version&gt;2.8&lt;/version&gt;
       &lt;/plugin&gt;
       ...
     &lt;/plugins&gt;