You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-commits@maven.apache.org by hb...@apache.org on 2016/02/13 17:18:59 UTC

svn commit: r980325 - in /websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST: examples/sitedescriptor.html invoker-report.html migrate.html surefire-report.html

Author: hboutemy
Date: Sat Feb 13 16:18:59 2016
New Revision: 980325

Log:
Site checkin for project Apache Maven Site Plugin

Modified:
    websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/examples/sitedescriptor.html
    websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/invoker-report.html
    websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/migrate.html
    websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/surefire-report.html

Modified: websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/examples/sitedescriptor.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/examples/sitedescriptor.html (original)
+++ websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/examples/sitedescriptor.html Sat Feb 13 16:18:59 2016
@@ -421,8 +421,8 @@ Dennis Lundberg" />
 <h2><a name="Configuring_the_Site_Descriptor"></a>Configuring the Site Descriptor</h2>
 <p>You can create your own site descriptor for your project when you want to override the navigation tree for the site. For example, aside from the generated reports you want to add additional content to your site. In order for it to be accessible in the generated site, you must configure your site descriptor. You create the site descriptor in a file called <tt>site.xml</tt> which should be located in your <tt>src/site</tt> directory.</p>
 <p>If you are migrating from Maven 1.x you will be interested to know that the <tt>navigation.xml</tt> file has been replaced by the site descriptor in Maven 2. The format is nearly the same, so you can probably reuse most of your old file.</p>
-<p>There is a <a class="externalLink" href="http://maven.apache.org/doxia/doxia-sitetools/doxia-decoration-model/decoration.html">reference documentation for the site descriptor</a> available.</p>
-<p>The XML Schema for the site descriptor is published at <a class="externalLink" href="http://maven.apache.org/xsd/decoration-1.7.0.xsd">http://maven.apache.org/xsd/decoration-1.7.0.xsd</a>.</p>
+<p>There is a <a href="/doxia/doxia-sitetools/doxia-decoration-model/decoration.html">reference documentation for the site descriptor</a> available.</p>
+<p>The XML Schema for the site descriptor is published at <a href="/xsd/decoration-1.7.0.xsd">/xsd/decoration-1.7.0.xsd</a>.</p>
 <p>Have a look at the <a class="externalLink" href="http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-site-plugin/src/site/site.xml">site descriptor for Maven Site Plugin</a> for a real life example.</p>
 <ul>
 <li><a href="#Title">Title</a></li>
@@ -463,7 +463,7 @@ Dennis Lundberg" />
   &lt;/bannerRight&gt;
   ...
 &lt;/project&gt;</pre></div>
-<p>Refer to the site descriptor <a class="externalLink" href="http://maven.apache.org/doxia/doxia-sitetools/doxia-decoration-model/decoration.html">reference</a> for a complete tag description.</p></div>
+<p>Refer to the site descriptor <a href="/doxia/doxia-sitetools/doxia-decoration-model/decoration.html">reference</a> for a complete tag description.</p></div>
 <div class="section">
 <h3><a name="Publish_Date"></a>Publish Date</h3>
 <p>With the out-of-the-box Velocity template, the position of the &quot;Last Published&quot; date is configurable. By default, the position is on the left but you can change it. To do this, you can add a <tt>&lt;publishDate&gt;</tt> element to your <tt>site.xml</tt> like the following:</p>
@@ -542,18 +542,19 @@ Dennis Lundberg" />
 <li><tt>modules</tt> - a menu containing the links to the sites of the submodules of this project</li></ul></div>
 <div class="section">
 <h3><a name="Inject_xhtml_into_head"></a>Inject xhtml into &lt;head&gt;</h3>
-<p>You can inject some xhtml into the generated <tt>&lt;head&gt;</tt> element of each page by adding a head element to the body element of your project's site descriptor. The following example adds some javascript:</p>
+<p>You can inject some HTML code into the generated <tt>&lt;head&gt;</tt> element of each page by adding a head element to the body element of your project's site descriptor. The following example adds some javascript:</p>
 <div class="source"><pre class="prettyprint linenums">&lt;project&gt;
   ...
   &lt;body&gt;
     ...
     &lt;head&gt;
-      &lt;script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot; /&gt;
+      &lt;![CDATA[&lt;script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot; /&gt;]]&gt;
     &lt;/head&gt;
     ...
   &lt;/body&gt;
   ...
-&lt;/project&gt;</pre></div></div>
+&lt;/project&gt;</pre></div>
+<p>Notice: since Maven Site Plugin version 3.5, if XHTML content is used, it has to be escaped, for example through CDATA XML notation. Previously, XML content didn't need such escaping.</p></div>
 <div class="section">
 <h3><a name="Links"></a>Links</h3>
 <p>To add links below your site logo, just add a links element to the <tt>&lt;body&gt;</tt> element of the site descriptor. Each item in the links element will be rendered as a link in a bar directly below your project's logo.</p>
@@ -593,11 +594,12 @@ Dennis Lundberg" />
   ...
   &lt;body&gt;
     ...
-    &lt;footer&gt;All rights reserved.&lt;/footer&gt;
+    &lt;footer&gt;&lt;![CDATA[All rights reserved.]]&gt;&lt;/footer&gt;
     ...
   &lt;/body&gt;
   ...
-&lt;/project&gt;</pre></div></div>
+&lt;/project&gt;</pre></div>
+<p>Notice: since Maven Site Plugin version 3.5, if XHTML content is used, it has to be escaped, for example through CDATA XML notation. Previously, XML content didn't need such escaping.</p></div>
 <div class="section">
 <h3><a name="Custom_content"></a>Custom content</h3>
 <p>There is also a dummy <tt>&lt;custom&gt;</tt> element then can be used to specify some arbitrary content. Note that you need to write your own velocity template to make use of this element, it is ignored by the default Velocity template used by the Site Plugin.</p>
@@ -608,23 +610,23 @@ Dennis Lundberg" />
 &lt;/project&gt;</pre></div></div>
 <div class="section">
 <h3><a name="Skinning"></a>Skinning</h3>
-<p>Skins can be created to customize the look and feel of a site in a consistent way. For more information on creating a skin, see <a href="./creatingskins.html">Creating a Skin</a>. To use a specific skin in your project, you use the <tt>&lt;skin&gt;</tt> element of the site descriptor. This is a regular artifact or dependency-like element. For example, to use the <a class="externalLink" href="http://maven.apache.org/skins/maven-classic-skin/">Maven Classic Skin</a>, you would include:</p>
+<p>Skins can be created to customize the look and feel of a site in a consistent way. For more information on creating a skin, see <a href="./creatingskins.html">Creating a Skin</a>. To use a specific skin in your project, you use the <tt>&lt;skin&gt;</tt> element of the site descriptor. This is a regular artifact or dependency-like element. For example, to use the <a href="/skins/maven-fluido-skin/">Maven Fluido Skin</a>, you would include:</p>
 <div class="source"><pre class="prettyprint linenums">&lt;project&gt;
   ...
   &lt;skin&gt;
     &lt;groupId&gt;org.apache.maven.skins&lt;/groupId&gt;
-    &lt;artifactId&gt;maven-classic-skin&lt;/artifactId&gt;
-    &lt;version&gt;1.0&lt;/version&gt;
+    &lt;artifactId&gt;maven-fluido-skin&lt;/artifactId&gt;
+    &lt;version&gt;1.5&lt;/version&gt;
   &lt;/skin&gt;
   ...
 &lt;/project&gt;</pre></div>
 <p><b>Note:</b> The <tt>&lt;version&gt;</tt> element is optional and, like plugins, if omitted the latest version available will be used. It is recommended that you always specify a version so that your site is reproducible over time.</p>
 <p>This skin will copy the necessary resources including CSS and if necessary use the included alternate Velocity template to render the site.</p>
-<p>If you don't specify a skin, the Site Plugin will use <a class="externalLink" href="http://maven.apache.org/skins/maven-default-skin/">Maven Default Skin</a>.</p></div>
+<p>If you don't specify a skin, the Site Plugin will use <a href="/skins/maven-default-skin/">Maven Default Skin</a>.</p></div>
 <div class="section">
 <h3><a name="Custom_Properties"></a>Custom Properties</h3>
 <p>The authors of skins have the option to use custom properties that are unique to their skin. The users of the skin can then specify their own values for these properties in their <tt>site.xml</tt> using the <tt>&lt;custom&gt;</tt> element.</p>
-<p>One skin that uses this is the Maven Fluido Skin. There are many examples on <a class="externalLink" href="http://maven.apache.org/skins/maven-fluido-skin/">their site</a> showing what is possible to do with custom properties. Here is one example:</p>
+<p>One skin that uses this is the Maven Fluido Skin. There are many examples on <a href="/skins/maven-fluido-skin/">their site</a> showing what is possible to do with custom properties. Here is one example:</p>
 <div class="source"><pre class="prettyprint linenums">&lt;project&gt;
   ...
   &lt;custom&gt;

Modified: websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/invoker-report.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/invoker-report.html (original)
+++ websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/invoker-report.html Sat Feb 13 16:18:59 2016
@@ -525,8 +525,8 @@
 <td>0</td>
 <td>0</td>
 <td>100.0%</td>
-<td>350.0&#xa0;s</td>
-<td>6.7&#xa0;s</td></tr></table>
+<td>332.7&#xa0;s</td>
+<td>6.4&#xa0;s</td></tr></table>
 <div class="section">
 <h3><a name="Build_Details"></a>Build Details</h3></div>
 <table border="0" class="table table-striped">
@@ -538,42 +538,42 @@
 <tr class="b">
 <td>resources/pom.xml</td>
 <td>success</td>
-<td>3.7&#xa0;s</td>
+<td>3.4&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-658/pom.xml</td>
 <td>success</td>
-<td>4.6&#xa0;s</td>
+<td>4.4&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>site-sd-2/pom.xml</td>
 <td>success</td>
-<td>8.1&#xa0;s</td>
+<td>8.2&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-506/pom.xml</td>
 <td>success</td>
-<td>9.7&#xa0;s</td>
+<td>10.0&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>site-sd/pom.xml</td>
 <td>success</td>
-<td>5.2&#xa0;s</td>
+<td>5.6&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>site-sd-stagingSiteURL/pom.xml</td>
 <td>success</td>
-<td>4.3&#xa0;s</td>
+<td>3.6&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-566/pom.xml</td>
 <td>success</td>
-<td>4.1&#xa0;s</td>
+<td>4.0&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>site-sd-lang/pom.xml</td>
 <td>success</td>
-<td>6.2&#xa0;s</td>
+<td>6.1&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-609/pom.xml</td>
@@ -583,12 +583,12 @@
 <tr class="a">
 <td>doxia-formats/pom.xml</td>
 <td>success</td>
-<td>4.0&#xa0;s</td>
+<td>5.0&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>site-skip/pom.xml</td>
 <td>success</td>
-<td>6.2&#xa0;s</td>
+<td>4.5&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>no-version/pom.xml</td>
@@ -598,137 +598,137 @@
 <tr class="b">
 <td>surefire-report/pom.xml</td>
 <td>success</td>
-<td>5.6&#xa0;s</td>
+<td>5.0&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>inheritedReports/pom.xml</td>
 <td>success</td>
-<td>3.9&#xa0;s</td>
+<td>4.0&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>validate/pom.xml</td>
 <td>success</td>
-<td>4.0&#xa0;s</td>
+<td>3.3&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>site-inheritance/pom.xml</td>
 <td>success</td>
-<td>6.8&#xa0;s</td>
+<td>6.7&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>site-deploy/pom.xml</td>
 <td>success</td>
-<td>3.9&#xa0;s</td>
+<td>3.7&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>empty-report-set/pom.xml</td>
 <td>success</td>
-<td>3.6&#xa0;s</td>
+<td>3.5&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>site-sd-top-parent-no-site/pom.xml</td>
 <td>success</td>
-<td>5.6&#xa0;s</td>
+<td>5.9&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-627/pom.xml</td>
 <td>success</td>
-<td>8.0&#xa0;s</td>
+<td>8.2&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-504/pom.xml</td>
 <td>success</td>
-<td>12.0&#xa0;s</td>
+<td>11.5&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>new-configuration/pom.xml</td>
 <td>success</td>
-<td>11.9&#xa0;s</td>
+<td>11.1&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-458/pom.xml</td>
 <td>success</td>
-<td>9.0&#xa0;s</td>
+<td>8.3&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>failure/pom.xml</td>
 <td>success</td>
-<td>16.6&#xa0;s</td>
+<td>15.8&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-644/pom.xml</td>
 <td>success</td>
-<td>2.9&#xa0;s</td>
+<td>2.8&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>inheritedMenus/pom.xml</td>
 <td>success</td>
-<td>4.1&#xa0;s</td>
+<td>4.9&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>reportConfig/pom.xml</td>
 <td>success</td>
-<td>3.9&#xa0;s</td>
+<td>3.7&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-265/pom.xml</td>
 <td>success</td>
-<td>13.3&#xa0;s</td>
+<td>8.8&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>site-sd-top-parent-different-site/pom.xml</td>
 <td>success</td>
-<td>5.3&#xa0;s</td>
+<td>4.8&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>site-sd-top-parent-same-site/pom.xml</td>
 <td>success</td>
-<td>4.8&#xa0;s</td>
+<td>4.5&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-665/pom.xml</td>
 <td>success</td>
-<td>8.4&#xa0;s</td>
+<td>7.9&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>site-attach-descriptor/pom.xml</td>
 <td>success</td>
-<td>3.5&#xa0;s</td>
+<td>3.7&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>report-changes-generation/pom.xml</td>
 <td>success</td>
-<td>4.5&#xa0;s</td>
+<td>4.4&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-354/pom.xml</td>
 <td>success</td>
-<td>5.2&#xa0;s</td>
+<td>4.4&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>site-jar/pom.xml</td>
 <td>success</td>
-<td>3.7&#xa0;s</td>
+<td>3.8&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>full-reporting/pom.xml</td>
 <td>success</td>
-<td>11.1&#xa0;s</td>
+<td>9.0&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>it-plugin-test/pom.xml</td>
 <td>success</td>
-<td>5.7&#xa0;s</td>
+<td>5.4&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-484/pom.xml</td>
 <td>success</td>
-<td>10.9&#xa0;s</td>
+<td>9.7&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-512/pom.xml</td>
 <td>success</td>
-<td>7.2&#xa0;s</td>
+<td>6.0&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-456/pom.xml</td>
@@ -738,22 +738,22 @@
 <tr class="b">
 <td>MSITE-497/pom.xml</td>
 <td>success</td>
-<td>16.9&#xa0;s</td>
+<td>19.4&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>effective-site/pom.xml</td>
 <td>success</td>
-<td>4.1&#xa0;s</td>
+<td>3.1&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-723/pom.xml</td>
 <td>success</td>
-<td>5.7&#xa0;s</td>
+<td>4.0&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-548/pom.xml</td>
 <td>success</td>
-<td>5.7&#xa0;s</td>
+<td>5.9&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>MSITE-159/pom.xml</td>
@@ -763,22 +763,22 @@
 <tr class="a">
 <td>emma-plugin-it/pom.xml</td>
 <td>success</td>
-<td>7.0&#xa0;s</td>
+<td>6.8&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>site-sd-submodule/pom.xml</td>
 <td>success</td>
-<td>5.3&#xa0;s</td>
+<td>5.4&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>inheritance-interpolation/pom.xml</td>
 <td>success</td>
-<td>6.9&#xa0;s</td>
+<td>7.0&#xa0;s</td>
 <td></td></tr>
 <tr class="b">
 <td>template-skin/pom.xml</td>
 <td>success</td>
-<td>9.9&#xa0;s</td>
+<td>8.3&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-582/pom.xml</td>
@@ -788,12 +788,12 @@
 <tr class="b">
 <td>MSITE-604/pom.xml</td>
 <td>success</td>
-<td>4.4&#xa0;s</td>
+<td>3.5&#xa0;s</td>
 <td></td></tr>
 <tr class="a">
 <td>MSITE-507/pom.xml</td>
 <td>success</td>
-<td>21.5&#xa0;s</td>
+<td>22.5&#xa0;s</td>
 <td></td></tr></table>
                   </div>
             </div>

Modified: websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/migrate.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/migrate.html (original)
+++ websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/migrate.html Sat Feb 13 16:18:59 2016
@@ -418,6 +418,22 @@
 <h2><a name="Migrate"></a>Migrate</h2>
 <p>The Site Plugin has had a couple of upgrades that requires the user to make adjustments to their environment, documents or configuration. Below is a list of these changes and what you as a user need to be aware of.</p>
 <div class="section">
+<h3><a name="From_3.4_to_3.5"></a>From 3.4 to 3.5</h3>
+<ul>
+<li>Since <a class="externalLink" href="http://velocity.apache.org">Velocity</a> has been upgraded from version 1.5 to version 1.7, which changes escaping rules, you may need to update escape sequences in your <tt>.vm</tt> documents and/or skins. If you can't update content and/or skin immediately, you can manually downgrade Velocity version by configuring a dependency to Maven Site Plugin:
+<div class="source"><pre class="prettyprint linenums">    &lt;plugin&gt;
+      &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+      &lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
+      &lt;dependencies&gt;
+        &lt;dependency&gt;
+          &lt;groupId&gt;org.apache.velocity&lt;/groupId&gt;
+          &lt;artifactId&gt;velocity&lt;/artifactId&gt;
+          &lt;version&gt;1.5&lt;/version&gt;
+        &lt;/dependency&gt;
+      &lt;/dependencies&gt;
+    &lt;/plugin&gt;</pre></div></li>
+<li>Site Decoration Model has changed type for <tt>head</tt>/<tt>footer</tt> from DOM to String: if your <tt>site.xml</tt> (or one parent) contains XML content, you'll need to escape it, usually by adding <tt>&lt;![CDATA[</tt> and <tt>]]&gt;</tt>.</li></ul></div>
+<div class="section">
 <h3><a name="From_2.x_to_3.x"></a>From 2.x to 3.x</h3>
 <ul>
 <li>Version 3 of the plugin requires at least <b>Maven 2.2.0</b> to run.</li>
@@ -437,10 +453,10 @@
 <li>The plugin now requires at least <b>Maven 2.1</b> to run, you cannot use it with older Maven versions.</li>
 <li>The plugin has been upgraded to use <b>Doxia 1.1</b>, which has seen a lot of major changes itself. If you experience unexpected behavior, please read these resources:
 <ul>
-<li><a class="externalLink" href="http://maven.apache.org/doxia/whatsnew-1.1.html">Doxia: what's new in 1.1?</a></li>
-<li><a class="externalLink" href="http://maven.apache.org/doxia/references/doxia-apt.html">Doxia: Enhancements to the APT format</a></li>
-<li><a class="externalLink" href="http://maven.apache.org/doxia/issues/index.html">Doxia: Issues &amp; Gotchas</a></li>
-<li><a class="externalLink" href="http://maven.apache.org/doxia/faq.html">Doxia: Frequently Asked Questions</a></li></ul></li></ul></div></div>
+<li><a href="/doxia/whatsnew-1.1.html">Doxia: what's new in 1.1?</a></li>
+<li><a href="/doxia/references/doxia-apt.html">Doxia: Enhancements to the APT format</a></li>
+<li><a href="/doxia/issues/index.html">Doxia: Issues &amp; Gotchas</a></li>
+<li><a href="/doxia/faq.html">Doxia: Frequently Asked Questions</a></li></ul></li></ul></div></div>
                   </div>
             </div>
           </div>

Modified: websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/surefire-report.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/surefire-report.html (original)
+++ websites/production/maven/components/plugins-archives/maven-site-plugin-LATEST/surefire-report.html Sat Feb 13 16:18:59 2016
@@ -541,7 +541,7 @@ function toggleDisplay(elementId) {
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>2.596</td></tr></table><br />
+<td>2.574</td></tr></table><br />
 <p>Note: failures are anticipated and checked for with assertions while errors are unanticipated.</p><br /></div>
 <div class="section">
 <h2><a name="Package_List"></a>Package List</h2><a name="Package_List"></a>
@@ -562,7 +562,7 @@ function toggleDisplay(elementId) {
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0.576</td></tr>
+<td>0.55</td></tr>
 <tr class="a">
 <td><a href="#org.apache.maven.plugins.site.deploy">org.apache.maven.plugins.site.deploy</a></td>
 <td>4</td>
@@ -570,7 +570,7 @@ function toggleDisplay(elementId) {
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>2.02</td></tr></table><br />
+<td>2.024</td></tr></table><br />
 <p>Note: package statistics are not computed recursively, they only sum up all of its testsuites numbers.</p>
 <div class="section">
 <h3><a name="org.apache.maven.plugins.site.run"></a>org.apache.maven.plugins.site.run</h3><a name="org.apache.maven.plugins.site.run"></a>
@@ -592,7 +592,7 @@ function toggleDisplay(elementId) {
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0.576</td></tr></table></div>
+<td>0.55</td></tr></table></div>
 <div class="section">
 <h3><a name="org.apache.maven.plugins.site.deploy"></a>org.apache.maven.plugins.site.deploy</h3><a name="org.apache.maven.plugins.site.deploy"></a>
 <table border="1" class="table table-striped">
@@ -613,7 +613,7 @@ function toggleDisplay(elementId) {
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0.679</td></tr>
+<td>0.674</td></tr>
 <tr class="a">
 <td><a href="#org.apache.maven.plugins.site.deploySiteDeployWebDavTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
 <td><a href="#org.apache.maven.plugins.site.deploySiteDeployWebDavTest">SiteDeployWebDavTest</a></td>
@@ -622,7 +622,7 @@ function toggleDisplay(elementId) {
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>1.341</td></tr></table></div><br /></div>
+<td>1.35</td></tr></table></div><br /></div>
 <div class="section">
 <h2><a name="Test_Cases"></a>Test Cases</h2><a name="Test_Cases"></a>
 <p>[<a href="#Summary">Summary</a>] [<a href="#Package_List">Package List</a>] [<a href="#Test_Cases">Test Cases</a>]</p>
@@ -632,29 +632,29 @@ function toggleDisplay(elementId) {
 <tr class="a">
 <td><img src="images/icon_success_sml.gif" alt="" /></td>
 <td>testFoo</td>
-<td>0.679</td></tr></table></div>
+<td>0.674</td></tr></table></div>
 <div class="section">
 <h3><a name="WebXmlTest"></a>WebXmlTest</h3><a name="org.apache.maven.plugins.site.runWebXmlTest"></a>
 <table border="1" class="table table-striped">
 <tr class="a">
 <td><img src="images/icon_success_sml.gif" alt="" /></td>
 <td>testFilters</td>
-<td>0.576</td></tr></table></div>
+<td>0.55</td></tr></table></div>
 <div class="section">
 <h3><a name="SiteDeployWebDavTest"></a>SiteDeployWebDavTest</h3><a name="org.apache.maven.plugins.site.deploySiteDeployWebDavTest"></a>
 <table border="1" class="table table-striped">
 <tr class="a">
 <td><img src="images/icon_success_sml.gif" alt="" /></td>
-<td>noAuthzDavDeploy</td>
-<td>0.604</td></tr>
+<td>davDeployThruProxyWithoutAuthzInProxy</td>
+<td>0.616</td></tr>
 <tr class="b">
 <td><img src="images/icon_success_sml.gif" alt="" /></td>
-<td>davDeployThruProxyWithoutAuthzInProxy</td>
-<td>0.381</td></tr>
+<td>davDeployThruProxyWitAuthzInProxy</td>
+<td>0.43</td></tr>
 <tr class="a">
 <td><img src="images/icon_success_sml.gif" alt="" /></td>
-<td>davDeployThruProxyWitAuthzInProxy</td>
-<td>0.356</td></tr></table></div><br /></div>
+<td>noAuthzDavDeploy</td>
+<td>0.304</td></tr></table></div><br /></div>
                   </div>
             </div>
           </div>