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 sv...@apache.org on 2019/06/09 13:59:37 UTC

svn commit: r1860906 [18/22] - in /maven/website/content: ./ apache-resource-bundles/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ developers/website/ docs/ docs/2.0.1/ docs/2.0.10/ docs/2.0.11/ docs/2.0.2/ do...

Modified: maven/website/content/plugin-developers/plugin-testing.html
==============================================================================
--- maven/website/content/plugin-developers/plugin-testing.html (original)
+++ maven/website/content/plugin-developers/plugin-testing.html Sun Jun  9 13:59:34 2019
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from content/apt/plugin-developers/plugin-testing.apt at 2019-06-09
+ | Generated by Apache Maven Doxia Site Renderer 1.9 from content/apt/plugin-developers/plugin-testing.apt at 2019-06-09
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -132,29 +132,24 @@
           </div>
         </div>
         <div id="bodyColumn"  class="span10" >
-<div class="section">
+<section>
 <h2><a name="Introduction"></a>Introduction</h2>
-<p>Currently, Maven only supports unit testing out of the box. This document is intended to help Maven Developers to test Plugins with Unit Tests, Integration Tests or Functional tests.</p></div>
-<div class="section">
+<p>Currently, Maven only supports unit testing out of the box. This document is intended to help Maven Developers to test Plugins with Unit Tests, Integration Tests or Functional tests.</p></section><section>
 <h2><a name="Testing_Styles:_Unit_Testing_vs._Functional.2FIntegration_Testing"></a>Testing Styles: Unit Testing vs. Functional/Integration Testing</h2>
 <p>A unit test attempts to verify a mojo as an isolated unit, by mocking out the rest of the Maven environment. A mojo unit test does not attempt to run your plugin in the context of a real Maven build. Unit tests are designed to be fast.</p>
 <p>A functional/integration test attempts to use a mojo in a real Maven build, by launching a real instance of Maven in a real project. Normally this requires you to construct special dummy Maven projects with real POM files. Often this requires you to have already installed your plugin into your local repository so it can be used in a real Maven build. Functional tests run much more slowly than unit tests, but they can catch bugs that you may not catch with unit tests.</p>
-<p>The general wisdom is that your code should be mostly tested with unit tests, but should also have some functional tests.</p></div>
-<div class="section">
-<h2><a name="Unit_Tests"></a>Unit Tests</h2>
-<div class="section">
+<p>The general wisdom is that your code should be mostly tested with unit tests, but should also have some functional tests.</p></section><section>
+<h2><a name="Unit_Tests"></a>Unit Tests</h2><section>
 <h3><a name="Using_JUnit_alone"></a>Using JUnit alone</h3>
-<p>In principle, you can write a unit test of a plugin Mojo the same way you'd write any other JUnit test case, by writing a class that <tt>extends TestCase</tt>.</p>
-<p>However, most mojos need more information to work properly. For example, you'll probably need to inject a reference to a MavenProject, so your mojo can query project variables.</p></div>
-<div class="section">
+<p>In principle, you can write a unit test of a plugin Mojo the same way you'd write any other JUnit test case, by writing a class that <code>extends TestCase</code>.</p>
+<p>However, most mojos need more information to work properly. For example, you'll probably need to inject a reference to a MavenProject, so your mojo can query project variables.</p></section><section>
 <h3><a name="Using_PlexusTestCase"></a>Using PlexusTestCase</h3>
 <p>Mojo variables are injected using Plexus, and many Mojos are written to take specific advantage of the Plexus container (by executing a lifecycle or having various injected dependencies).</p>
-<p>If you all you need is Plexus container services, you can write your class with <tt>extends PlexusTestCase</tt> instead of TestCase.</p>
-<p>With that said, if you need to inject Maven objects into your mojo, you'll probably prefer to use the maven-plugin-testing-harness.</p></div>
-<div class="section">
+<p>If you all you need is Plexus container services, you can write your class with <code>extends PlexusTestCase</code> instead of TestCase.</p>
+<p>With that said, if you need to inject Maven objects into your mojo, you'll probably prefer to use the maven-plugin-testing-harness.</p></section><section>
 <h3><a name="maven-plugin-testing-harness"></a>maven-plugin-testing-harness</h3>
-<p>The <a href="/plugin-testing/maven-plugin-testing-harness/">maven-plugin-testing-harness</a> is explicitly intended to test the <tt>org.apache.maven.reporting.AbstractMavenReport#execute()</tt> implementation.</p>
-<p>In general, you need to include <tt>maven-plugin-testing-harness</tt> as dependency, and create a *MojoTest (by convention) class which <tt>extends AbstractMojoTestCase</tt>.</p>
+<p>The <a href="/plugin-testing/maven-plugin-testing-harness/">maven-plugin-testing-harness</a> is explicitly intended to test the <code>org.apache.maven.reporting.AbstractMavenReport#execute()</code> implementation.</p>
+<p>In general, you need to include <code>maven-plugin-testing-harness</code> as dependency, and create a *MojoTest (by convention) class which <code>extends AbstractMojoTestCase</code>.</p>
 <div class="source"><pre class="prettyprint linenums">...
   &lt;dependencies&gt;
     ...
@@ -192,10 +187,8 @@
         assertNotNull( mojo );
     }
 }</pre></div>
-<p>For more information, please refer to <a class="externalLink" href="http://cwiki.apache.org/confluence/display/MAVENOLD/Maven+Plugin+Harness">Maven Plugin Harness Wiki</a></p></div></div>
-<div class="section">
-<h2><a name="Integration.2FFunctional_testing"></a>Integration/Functional testing</h2>
-<div class="section">
+<p>For more information, please refer to <a class="externalLink" href="http://cwiki.apache.org/confluence/display/MAVENOLD/Maven+Plugin+Harness">Maven Plugin Harness Wiki</a></p></section></section><section>
+<h2><a name="Integration.2FFunctional_testing"></a>Integration/Functional testing</h2><section>
 <h3><a name="maven-verifier"></a>maven-verifier</h3>
 <p>maven-verifier tests are run using JUnit or TestNG, and provide a simple class allowing you to launch Maven and assert on its log file and built artifacts. It also provides a ResourceExtractor, which extracts a Maven project from your src/test/resources directory into a temporary working directory where you can do tricky stuff with it.</p>
 <p>Maven itself uses maven-verifier to run its core integration tests. For more information, please refer to <a class="externalLink" href="https://cwiki.apache.org/confluence/display/MAVEN/Creating+a+Maven+Integration+Test">Creating a Maven Integration Test</a>.</p>
@@ -259,8 +252,7 @@
          * https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk
          */
     }</pre></div>
-<p><b>Note</b>: maven-verifier and maven-verifier-plugin sound similar, but are totally different unrelated pieces of code. maven-verifier-plugin simply verifies the existence/absence of files on the filesystem. You could use it for functional testing, but you may need more features than maven-verifier-plugin provides.</p></div>
-<div class="section">
+<p><b>Note</b>: maven-verifier and maven-verifier-plugin sound similar, but are totally different unrelated pieces of code. maven-verifier-plugin simply verifies the existence/absence of files on the filesystem. You could use it for functional testing, but you may need more features than maven-verifier-plugin provides.</p></section><section>
 <h3><a name="maven-invoker-plugin"></a>maven-invoker-plugin</h3>
 <p>You can use <a class="externalLink" href="https://maven.apache.org/plugins/maven-invoker-plugin/">maven-invoker-plugin</a> to invoke Maven and to provide some BeanShell/Groovy tests. Tests written in this way don't run under JUnit/TestNG; instead, they're run by Maven itself.</p>
 <p>You can take a look at the <a class="externalLink" href="https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-install-plugin/src/it/">maven-install-plugin</a> how there are integration tests are written.</p>
@@ -295,7 +287,7 @@
     &lt;/plugins&gt;
   &lt;/build&gt;
   ...
-&lt;/project&gt;</pre></div></div></div>
+&lt;/project&gt;</pre></div></section></section>
         </div>
       </div>
     </div>

Modified: maven/website/content/plugins/index.html
==============================================================================
--- maven/website/content/plugins/index.html (original)
+++ maven/website/content/plugins/index.html Sun Jun  9 13:59:34 2019
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from content/apt/plugins/index.apt at 2019-06-09
+ | Generated by Apache Maven Doxia Site Renderer 1.9 from content/apt/plugins/index.apt at 2019-06-09
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -125,15 +125,14 @@ Karl-Heinz Marbaise" />
           </div>
         </div>
         <div id="bodyColumn"  class="span10" >
-<div class="section">
+<section>
 <h2><a name="Available_Plugins"></a>Available Plugins</h2>
 <p>Maven is - at its heart - a plugin execution framework; all work is done by plugins. Looking for a specific goal to execute? This page lists the core plugins and others. There are the build and the reporting plugins:</p>
 <ul>
-<li><b>Build plugins</b> will be executed during the build and they should be configured in the <tt>&lt;build/&gt;</tt> element from the POM.</li>
-<li><b>Reporting plugins</b> will be executed during the site generation and they should be configured in the <tt>&lt;reporting/&gt;</tt> element from the POM. Because the result of a Reporting plugin is part of the generated site, Reporting plugins should be both internationalized and localized. You can read more about the <a href="./localization.html">localization of our plugins</a> and how you can help.</li></ul>
-<div class="section">
+<li><b>Build plugins</b> will be executed during the build and they should be configured in the <code>&lt;build/&gt;</code> element from the POM.</li>
+<li><b>Reporting plugins</b> will be executed during the site generation and they should be configured in the <code>&lt;reporting/&gt;</code> element from the POM. Because the result of a Reporting plugin is part of the generated site, Reporting plugins should be both internationalized and localized. You can read more about the <a href="./localization.html">localization of our plugins</a> and how you can help.</li></ul><section>
 <h3><a name="Supported_By_The_Maven_Project"></a>Supported By The Maven Project</h3>
-<p>To see the most up-to-date list browse the Maven repository, specifically the <a class="externalLink" href="https://repo.maven.apache.org/maven2/org/apache/maven/plugins/"> <tt>org/apache/maven/plugins</tt></a> subfolder. <i>(Plugins are organized according to a directory structure that resembles the standard Java package naming convention)</i></p>
+<p>To see the most up-to-date list browse the Maven repository, specifically the <a class="externalLink" href="https://repo.maven.apache.org/maven2/org/apache/maven/plugins/"> <code>org/apache/maven/plugins</code></a> subfolder. <i>(Plugins are organized according to a directory structure that resembles the standard Java package naming convention)</i></p>
 <table border="1" class="table table-striped">
 <tr class="a">
 <th align="left"><b>Plugin</b></th>
@@ -152,7 +151,7 @@ Karl-Heinz Marbaise" />
 <td align="left"></td>
 <td align="left"></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-clean-plugin/"> <tt>clean</tt></a></td>
+<td align="left"><a href="/plugins/maven-clean-plugin/"> <code>clean</code></a></td>
 <td align="left">B</td>
 <td align="left">3.1.0</td>
 <td align="left">2018-04-14</td>
@@ -160,7 +159,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-clean-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-clean-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MCLEAN">Jira MCLEAN</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-compiler-plugin/"> <tt>compiler</tt></a></td>
+<td align="left"><a href="/plugins/maven-compiler-plugin/"> <code>compiler</code></a></td>
 <td align="left">B</td>
 <td align="left">3.8.1</td>
 <td align="left">2019-04-28</td>
@@ -168,7 +167,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-compiler-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MCOMPILER">Jira MCOMPILER</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-deploy-plugin/"> <tt>deploy</tt></a></td>
+<td align="left"><a href="/plugins/maven-deploy-plugin/"> <code>deploy</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0-M1</td>
 <td align="left">2018-09-23</td>
@@ -176,7 +175,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-deploy-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MDEPLOY">Jira MDEPLOY</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/surefire/maven-failsafe-plugin/"> <tt>failsafe</tt></a></td>
+<td align="left"><a href="/surefire/maven-failsafe-plugin/"> <code>failsafe</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0-M3</td>
 <td align="left">2018-12-23</td>
@@ -184,7 +183,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-surefire.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-surefire/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/SUREFIRE">Jira SUREFIRE</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-install-plugin/"> <tt>install</tt></a></td>
+<td align="left"><a href="/plugins/maven-install-plugin/"> <code>install</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0-M1</td>
 <td align="left">2018-09-23</td>
@@ -192,7 +191,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-install-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-install-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MINSTALL">Jira MINSTALL</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-resources-plugin/"> <tt>resources</tt></a></td>
+<td align="left"><a href="/plugins/maven-resources-plugin/"> <code>resources</code></a></td>
 <td align="left">B</td>
 <td align="left">3.1.0</td>
 <td align="left">2018-04-23</td>
@@ -200,7 +199,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-resources-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-resources-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MRESOURCES">Jira MRESOURCES</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-site-plugin/"> <tt>site</tt></a></td>
+<td align="left"><a href="/plugins/maven-site-plugin/"> <code>site</code></a></td>
 <td align="left">B</td>
 <td align="left">3.7.1</td>
 <td align="left">2018-04-27</td>
@@ -208,7 +207,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-site-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-site-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MSITE">Jira MSITE</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/surefire/maven-surefire-plugin/"> <tt>surefire</tt></a></td>
+<td align="left"><a href="/surefire/maven-surefire-plugin/"> <code>surefire</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0-M3</td>
 <td align="left">2018-12-23</td>
@@ -216,7 +215,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-surefire.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-surefire/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/SUREFIRE">Jira SUREFIRE</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-verifier-plugin/"> <tt>verifier</tt></a></td>
+<td align="left"><a href="/plugins/maven-verifier-plugin/"> <code>verifier</code></a></td>
 <td align="left">B</td>
 <td align="left">1.1</td>
 <td align="left">2015-04-14</td>
@@ -232,7 +231,7 @@ Karl-Heinz Marbaise" />
 <td align="left"></td>
 <td align="left"></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-ear-plugin/"> <tt>ear</tt></a></td>
+<td align="left"><a href="/plugins/maven-ear-plugin/"> <code>ear</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.1</td>
 <td align="left">2018-05-09</td>
@@ -240,7 +239,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-ear-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-ear-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MEAR">Jira MEAR</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-ejb-plugin/"> <tt>ejb</tt></a></td>
+<td align="left"><a href="/plugins/maven-ejb-plugin/"> <code>ejb</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.1</td>
 <td align="left">2018-05-03</td>
@@ -248,7 +247,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-ejb-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-ejb-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MEJB">Jira MEJB</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-jar-plugin/"> <tt>jar</tt></a></td>
+<td align="left"><a href="/plugins/maven-jar-plugin/"> <code>jar</code></a></td>
 <td align="left">B</td>
 <td align="left">3.1.2</td>
 <td align="left">2019-05-08</td>
@@ -256,7 +255,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jar-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-jar-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MJAR">Jira MJAR</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-rar-plugin/"> <tt>rar</tt></a></td>
+<td align="left"><a href="/plugins/maven-rar-plugin/"> <code>rar</code></a></td>
 <td align="left">B</td>
 <td align="left">2.4</td>
 <td align="left">2014-09-08</td>
@@ -264,7 +263,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-rar-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-rar-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MRAR">Jira MRAR</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-war-plugin/"> <tt>war</tt></a></td>
+<td align="left"><a href="/plugins/maven-war-plugin/"> <code>war</code></a></td>
 <td align="left">B</td>
 <td align="left">3.2.3</td>
 <td align="left">2019-05-23</td>
@@ -272,7 +271,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-war-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-war-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MWAR">Jira MWAR</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-acr-plugin/"> <tt>app-client/acr</tt></a></td>
+<td align="left"><a href="/plugins/maven-acr-plugin/"> <code>app-client/acr</code></a></td>
 <td align="left">B</td>
 <td align="left">3.1.0</td>
 <td align="left">2018-06-19</td>
@@ -280,7 +279,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-acr-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-acr-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MACR">Jira MACR</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-shade-plugin/"> <tt>shade</tt></a></td>
+<td align="left"><a href="/plugins/maven-shade-plugin/"> <code>shade</code></a></td>
 <td align="left">B</td>
 <td align="left">3.2.1</td>
 <td align="left">2018-11-12</td>
@@ -288,7 +287,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-shade-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-shade-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MSHADE">Jira MSHADE</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-source-plugin/"> <tt>source</tt></a></td>
+<td align="left"><a href="/plugins/maven-source-plugin/"> <code>source</code></a></td>
 <td align="left">B</td>
 <td align="left">3.1.0</td>
 <td align="left">2019-05-15</td>
@@ -296,7 +295,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-source-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-source-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MSOURCES">Jira MSOURCES</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-jlink-plugin/"> <tt>jlink</tt></a></td>
+<td align="left"><a href="/plugins/maven-jlink-plugin/"> <code>jlink</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0-alpha-1</td>
 <td align="left">2017-09-09</td>
@@ -304,7 +303,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jlink-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-jlink-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MJLINK">Jira MJLINK</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-jmod-plugin/"> <tt>jmod</tt></a></td>
+<td align="left"><a href="/plugins/maven-jmod-plugin/"> <code>jmod</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0-alpha-1</td>
 <td align="left">2017-09-17</td>
@@ -320,7 +319,7 @@ Karl-Heinz Marbaise" />
 <td align="left"></td>
 <td align="left"></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-changelog-plugin/"> <tt>changelog</tt></a></td>
+<td align="left"><a href="/plugins/maven-changelog-plugin/"> <code>changelog</code></a></td>
 <td align="left">R</td>
 <td align="left">2.3</td>
 <td align="left">2014-06-24</td>
@@ -328,7 +327,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-changelog-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-changelog-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MCHANGELOG">Jira MCHANGELOG</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-changes-plugin/"> <tt>changes</tt></a></td>
+<td align="left"><a href="/plugins/maven-changes-plugin/"> <code>changes</code></a></td>
 <td align="left">B+R</td>
 <td align="left">2.12.1</td>
 <td align="left">2016-11-01</td>
@@ -336,7 +335,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-changes-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-changes-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MCHANGES">Jira MCHANGES</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-checkstyle-plugin/"> <tt>checkstyle</tt></a></td>
+<td align="left"><a href="/plugins/maven-checkstyle-plugin/"> <code>checkstyle</code></a></td>
 <td align="left">B+R</td>
 <td align="left">3.1.0</td>
 <td align="left">2019-05-20</td>
@@ -344,7 +343,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-checkstyle-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MCHECKSTYLE">Jira MCHECKSTYLE</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-doap-plugin/"> <tt>doap</tt></a></td>
+<td align="left"><a href="/plugins/maven-doap-plugin/"> <code>doap</code></a></td>
 <td align="left">B</td>
 <td align="left">1.2</td>
 <td align="left">2015-03-17</td>
@@ -352,7 +351,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-doap-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-doap-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MDOAP">Jira MDOAP</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-docck-plugin/"> <tt>docck</tt></a></td>
+<td align="left"><a href="/plugins/maven-docck-plugin/"> <code>docck</code></a></td>
 <td align="left">B</td>
 <td align="left">1.1</td>
 <td align="left">2015-04-03</td>
@@ -360,7 +359,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-docck-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-docck-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MDOCCK">Jira MDOCCK</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-javadoc-plugin/"> <tt>javadoc</tt></a></td>
+<td align="left"><a href="/plugins/maven-javadoc-plugin/"> <code>javadoc</code></a></td>
 <td align="left">B+R</td>
 <td align="left">3.1.0</td>
 <td align="left">2019-03-04</td>
@@ -368,7 +367,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-javadoc-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MJAVADOC">Jira MJAVADOC</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-jdeps-plugin/"> <tt>jdeps</tt></a></td>
+<td align="left"><a href="/plugins/maven-jdeps-plugin/"> <code>jdeps</code></a></td>
 <td align="left">B</td>
 <td align="left">3.1.1</td>
 <td align="left">2018-02-28</td>
@@ -376,7 +375,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-jdeps-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MJDEPS">Jira MJDEPS</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/jxr/maven-jxr-plugin/"> <tt>jxr</tt></a></td>
+<td align="left"><a href="/jxr/maven-jxr-plugin/"> <code>jxr</code></a></td>
 <td align="left">R</td>
 <td align="left">3.0.0</td>
 <td align="left">2018-09-25</td>
@@ -384,7 +383,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jxr.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-jxr/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/JXR">Jira JXR</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-linkcheck-plugin/"> <tt>linkcheck</tt></a></td>
+<td align="left"><a href="/plugins/maven-linkcheck-plugin/"> <code>linkcheck</code></a></td>
 <td align="left">R</td>
 <td align="left">1.2</td>
 <td align="left">2014-10-08</td>
@@ -392,7 +391,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-linkcheck-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-linkcheck-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MLINKCHECK">Jira MLINKCHECK</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-pmd-plugin/"> <tt>pmd</tt></a></td>
+<td align="left"><a href="/plugins/maven-pmd-plugin/"> <code>pmd</code></a></td>
 <td align="left">B+R</td>
 <td align="left">3.12.0</td>
 <td align="left">2019-04-11</td>
@@ -400,7 +399,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-pmd-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MPMD">Jira MPMD</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-project-info-reports-plugin/"> <tt>project-info-reports</tt></a></td>
+<td align="left"><a href="/plugins/maven-project-info-reports-plugin/"> <code>project-info-reports</code></a></td>
 <td align="left">R</td>
 <td align="left">3.0.0</td>
 <td align="left">2018-06-23</td>
@@ -408,7 +407,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-project-info-reports-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-project-info-reports-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MPIR">Jira MPIR</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/surefire/maven-surefire-report-plugin/"> <tt>surefire-report</tt></a></td>
+<td align="left"><a href="/surefire/maven-surefire-report-plugin/"> <code>surefire-report</code></a></td>
 <td align="left">R</td>
 <td align="left">3.0.0-M3</td>
 <td align="left">2018-12-23</td>
@@ -424,7 +423,7 @@ Karl-Heinz Marbaise" />
 <td align="left"></td>
 <td align="left"></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-antrun-plugin/"> <tt>antrun</tt></a></td>
+<td align="left"><a href="/plugins/maven-antrun-plugin/"> <code>antrun</code></a></td>
 <td align="left">B</td>
 <td align="left">1.8</td>
 <td align="left">2014-12-26</td>
@@ -432,7 +431,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-antrun-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-antrun-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MANTRUN">Jira MANTRUN</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/archetype/maven-archetype-plugin/"> <tt>archetype</tt></a></td>
+<td align="left"><a href="/archetype/maven-archetype-plugin/"> <code>archetype</code></a></td>
 <td align="left">B</td>
 <td align="left">3.1.0</td>
 <td align="left">2019-04-30</td>
@@ -440,7 +439,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-archetype.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-archetype/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/ARCHETYPE">Jira ARCHETYPE</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-assembly-plugin/"> <tt>assembly</tt></a></td>
+<td align="left"><a href="/plugins/maven-assembly-plugin/"> <code>assembly</code></a></td>
 <td align="left">B</td>
 <td align="left">3.1.1</td>
 <td align="left">2019-01-02</td>
@@ -448,7 +447,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-assembly-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MASSEMBLY">Jira MASSEMBLY</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-dependency-plugin/"> <tt>dependency</tt></a></td>
+<td align="left"><a href="/plugins/maven-dependency-plugin/"> <code>dependency</code></a></td>
 <td align="left">B+R</td>
 <td align="left">3.1.1</td>
 <td align="left">2018-05-19</td>
@@ -456,7 +455,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-dependency-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MDEP">Jira MDEP</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/enforcer/maven-enforcer-plugin/"> <tt>enforcer</tt></a></td>
+<td align="left"><a href="/enforcer/maven-enforcer-plugin/"> <code>enforcer</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0-M2</td>
 <td align="left">2018-06-16</td>
@@ -464,7 +463,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-enforcer.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-enforcer/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MENFORCER">Jira MENFORCER</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-gpg-plugin/"> <tt>gpg</tt></a></td>
+<td align="left"><a href="/plugins/maven-gpg-plugin/"> <code>gpg</code></a></td>
 <td align="left">B</td>
 <td align="left">1.6</td>
 <td align="left">2015-01-19</td>
@@ -472,7 +471,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-gpg-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-gpg-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MGPG">Jira MGPG</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-help-plugin/"> <tt>help</tt></a></td>
+<td align="left"><a href="/plugins/maven-help-plugin/"> <code>help</code></a></td>
 <td align="left">B</td>
 <td align="left">3.2.0</td>
 <td align="left">2019-04-16</td>
@@ -480,7 +479,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-help-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-help-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MPH">Jira MPH</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-invoker-plugin/"> <tt>invoker</tt></a></td>
+<td align="left"><a href="/plugins/maven-invoker-plugin/"> <code>invoker</code></a></td>
 <td align="left">B+R</td>
 <td align="left">3.2.0</td>
 <td align="left">2019-01-21</td>
@@ -488,7 +487,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-invoker-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MINVOKER">Jira MINVOKER</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-jarsigner-plugin/"> <tt>jarsigner</tt></a></td>
+<td align="left"><a href="/plugins/maven-jarsigner-plugin/"> <code>jarsigner</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0</td>
 <td align="left">2018-11-06</td>
@@ -496,7 +495,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jarsigner-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-jarsigner-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MJARSIGNER">Jira MJARSIGNER</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-jdeprscan-plugin/"> <tt>jdeprscan</tt></a></td>
+<td align="left"><a href="/plugins/maven-jdeprscan-plugin/"> <code>jdeprscan</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0-alpha-1</td>
 <td align="left">2017-11-15</td>
@@ -504,7 +503,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jdeprscan-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-jdeprscan-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MJDEPRSCAN">Jira MJDEPRSCAN</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-patch-plugin/"> <tt>patch</tt></a></td>
+<td align="left"><a href="/plugins/maven-patch-plugin/"> <code>patch</code></a></td>
 <td align="left">B</td>
 <td align="left">1.2</td>
 <td align="left">2015-03-09</td>
@@ -512,7 +511,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-patch-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-patch-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MPATCH">Jira MPATCH</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-pdf-plugin/"> <tt>pdf</tt></a></td>
+<td align="left"><a href="/plugins/maven-pdf-plugin/"> <code>pdf</code></a></td>
 <td align="left">B</td>
 <td align="left">1.4</td>
 <td align="left">2017-12-28</td>
@@ -520,7 +519,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-pdf-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-pdf-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MPDF">Jira MPDF</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugin-tools/maven-plugin-plugin/"> <tt>plugin</tt></a></td>
+<td align="left"><a href="/plugin-tools/maven-plugin-plugin/"> <code>plugin</code></a></td>
 <td align="left">B+R</td>
 <td align="left">3.6.0</td>
 <td align="left">2018-11-01</td>
@@ -528,7 +527,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-plugin-tools.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-plugin-tools/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MPLUGIN">Jira MPLUGIN</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-release-plugin/"> <tt>release</tt></a></td>
+<td align="left"><a href="/plugins/maven-release-plugin/"> <code>release</code></a></td>
 <td align="left">B</td>
 <td align="left">2.5.3</td>
 <td align="left">2015-10-17</td>
@@ -536,7 +535,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-release.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-release/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MRELEASE">Jira MRELEASE</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-remote-resources-plugin/"> <tt>remote-resources</tt></a></td>
+<td align="left"><a href="/plugins/maven-remote-resources-plugin/"> <code>remote-resources</code></a></td>
 <td align="left">B</td>
 <td align="left">1.6.0</td>
 <td align="left">2018-10-31</td>
@@ -544,7 +543,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-remote-resources-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MRRESOURCES">Jira MRRESOURCES</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/scm/maven-scm-plugin/"> <tt>scm</tt></a></td>
+<td align="left"><a href="/scm/maven-scm-plugin/"> <code>scm</code></a></td>
 <td align="left">B</td>
 <td align="left">1.11.2</td>
 <td align="left">2019-03-21</td>
@@ -552,7 +551,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-scm.git ">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-scm/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/SCM">Jira SCM</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-scm-publish-plugin/"> <tt>scm-publish</tt></a></td>
+<td align="left"><a href="/plugins/maven-scm-publish-plugin/"> <code>scm-publish</code></a></td>
 <td align="left">B</td>
 <td align="left">3.0.0</td>
 <td align="left">2018-01-29</td>
@@ -560,7 +559,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-scm-publish-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-scm-publish-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MSCMPUB">Jira MSCMPUB</a></td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-stage-plugin/"> <tt>stage</tt></a></td>
+<td align="left"><a href="/plugins/maven-stage-plugin/"> <code>stage</code></a></td>
 <td align="left">B</td>
 <td align="left">1.0</td>
 <td align="left">2015-03-03</td>
@@ -568,7 +567,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-stage-plugin.git">Git</a> / <a class="externalLink" href="https://github.com/apache/maven-stage-plugin/">GitHub</a></td>
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MSTAGE">Jira MSTAGE</a></td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-toolchains-plugin/"> <tt>toolchains</tt></a></td>
+<td align="left"><a href="/plugins/maven-toolchains-plugin/"> <code>toolchains</code></a></td>
 <td align="left">B</td>
 <td align="left">1.1</td>
 <td align="left">2014-11-12</td>
@@ -577,8 +576,7 @@ Karl-Heinz Marbaise" />
 <td align="left"><a class="externalLink" href="https://issues.apache.org/jira/browse/MTOOLCHAINS">Jira MTOOLCHAINS</a></td></tr></table>
 <p>* <b>B</b>uild or <b>R</b>eporting plugin</p>
 <p>There are also some sandbox plugins into our <a class="externalLink" href="https://svn.apache.org/repos/asf/maven/sandbox/trunk/plugins">source repository</a>.</p>
-<p>Previous archived versions of plugins reference documentations are <a href="../plugins-archives/">located here</a>. </p></div>
-<div class="section">
+<p>Previous archived versions of plugins reference documentations are <a href="../plugins-archives/">located here</a>. </p></section><section>
 <h3><a name="Retired"></a>Retired</h3>
 <table border="1" class="table table-striped">
 <tr class="a">
@@ -588,44 +586,42 @@ Karl-Heinz Marbaise" />
 <th align="left"><b>Retired Date</b></th>
 <th align="left"><b>Description</b></th></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-ant-plugin/"> <tt>ant</tt></a></td>
+<td align="left"><a href="/plugins/maven-ant-plugin/"> <code>ant</code></a></td>
 <td align="left">B</td>
 <td align="left">2.4</td>
 <td align="left">2019-06-02</td>
 <td align="left">Generate an Ant build file for the project.</td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-eclipse-plugin/"> <tt>eclipse</tt></a></td>
+<td align="left"><a href="/plugins/maven-eclipse-plugin/"> <code>eclipse</code></a></td>
 <td align="left">B</td>
 <td align="left">2.10</td>
 <td align="left">2015-10-07</td>
 <td align="left">Generate an Eclipse project files for the current project.</td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-idea-plugin/"> <tt>idea</tt></a></td>
+<td align="left"><a href="/plugins/maven-idea-plugin/"> <code>idea</code></a></td>
 <td align="left">B</td>
 <td align="left">2.2.1</td>
 <td align="left">2013-07-26</td>
 <td align="left">Create/update an IDEA workspace for the current project (individual modules are created as IDEA modules)</td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-one-plugin/"> <tt>one</tt></a></td>
+<td align="left"><a href="/plugins/maven-one-plugin/"> <code>one</code></a></td>
 <td align="left">B</td>
 <td align="left">1.3</td>
 <td align="left">2013-07-30</td>
 <td align="left">A plugin for interacting with legacy Maven 1.x repositories and builds.</td></tr>
 <tr class="b">
-<td align="left"><a href="/plugins/maven-reactor-plugin/"> <tt>reactor</tt></a></td>
+<td align="left"><a href="/plugins/maven-reactor-plugin/"> <code>reactor</code></a></td>
 <td align="left">B</td>
 <td align="left">1.1</td>
 <td align="left">2014-03-24</td>
 <td align="left">Build a subset of interdependent projects in a reactor (Maven 2 only).</td></tr>
 <tr class="a">
-<td align="left"><a href="/plugins/maven-repository-plugin/"> <tt>repository</tt></a></td>
+<td align="left"><a href="/plugins/maven-repository-plugin/"> <code>repository</code></a></td>
 <td align="left">B</td>
 <td align="left">2.4</td>
 <td align="left">2019-04-30</td>
-<td align="left">Plugin to help with repository-based tasks.</td></tr></table></div>
-<div class="section">
-<h3><a name="Outside_The_Maven_Land"></a>Outside The Maven Land</h3>
-<div class="section">
+<td align="left">Plugin to help with repository-based tasks.</td></tr></table></section><section>
+<h3><a name="Outside_The_Maven_Land"></a>Outside The Maven Land</h3><section>
 <h4><a name="At_MojoHaus_.28formerly_known_as_codehaus.org.29"></a>At MojoHaus (formerly known as <a name="codehaus.org">codehaus.org</a>)</h4>
 <p>There are also <a class="externalLink" href="https://www.mojohaus.org/plugins.html">many plug-ins</a> available at the <a class="externalLink" href="https://github.com/mojohaus"> MojoHaus</a> project at GitHub.</p>
 <p>Here are a few common ones:</p>
@@ -634,39 +630,38 @@ Karl-Heinz Marbaise" />
 <th align="left"><b>Plugin</b> (see <a class="externalLink" href="https://www.mojohaus.org/plugins.html">complete list with version</a>)</th>
 <th align="left"><b>Description</b></th></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/animal-sniffer/animal-sniffer-maven-plugin/"> <tt>animal-sniffer</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/animal-sniffer/animal-sniffer-maven-plugin/"> <code>animal-sniffer</code></a></td>
 <td align="left">Build signatures of APIs (JDK for example) and checks your classes against them.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/build-helper-maven-plugin/"> <tt>build-helper</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/build-helper-maven-plugin/"> <code>build-helper</code></a></td>
 <td align="left">Attach extra artifacts and source folders to build.</td></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/castor-maven-plugin/"> <tt>castor</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/castor-maven-plugin/"> <code>castor</code></a></td>
 <td align="left">Generate sources from an XSD using Castor.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/clirr-maven-plugin/"> <tt>clirr</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/clirr-maven-plugin/"> <code>clirr</code></a></td>
 <td align="left">Compare binaries or sources for compatibility using Clirr</td></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/javacc-maven-plugin/"> <tt>javacc</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/javacc-maven-plugin/"> <code>javacc</code></a></td>
 <td align="left">Generate sources from a JavaCC grammar.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/jdepend-maven-plugin/"> <tt>jdepend</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/jdepend-maven-plugin/"> <code>jdepend</code></a></td>
 <td align="left">Generate a report on code metrics using JDepend.</td></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://maven-nar.github.io/"> <tt>nar-maven-plugin</tt></a></td>
+<td align="left"><a class="externalLink" href="https://maven-nar.github.io/"> <code>nar-maven-plugin</code></a></td>
 <td align="left">Compiles C, C++, Fortran for different architectures.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/maven-native/native-maven-plugin/"> <tt>native</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/maven-native/native-maven-plugin/"> <code>native</code></a></td>
 <td align="left">Compiles C and C++ code with native compilers.</td></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/sql-maven-plugin/"> <tt>sql</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/sql-maven-plugin/"> <code>sql</code></a></td>
 <td align="left">Executes SQL scripts from files or inline.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/taglist-maven-plugin/"> <tt>taglist</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/taglist-maven-plugin/"> <code>taglist</code></a></td>
 <td align="left">Generate a list of tasks based on tags in your code.</td></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://www.mojohaus.org/versions-maven-plugin/"> <tt>versions</tt></a></td>
-<td align="left">Manage versions of your project, its modules, dependencies and plugins.</td></tr></table></div>
-<div class="section">
+<td align="left"><a class="externalLink" href="https://www.mojohaus.org/versions-maven-plugin/"> <code>versions</code></a></td>
+<td align="left">Manage versions of your project, its modules, dependencies and plugins.</td></tr></table></section><section>
 <h4><a name="Misc"></a>Misc</h4>
 <p>A number of other projects provide their own Maven plugins. This includes:</p>
 <table border="1" class="table table-striped">
@@ -675,41 +670,40 @@ Karl-Heinz Marbaise" />
 <th align="left"><b>Maintainer</b></th>
 <th align="left"><b>Description</b></th></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://codehaus-cargo.github.io/"> <tt>cargo</tt></a></td>
+<td align="left"><a class="externalLink" href="https://codehaus-cargo.github.io/"> <code>cargo</code></a></td>
 <td align="left"><a class="externalLink" href="https://codehaus-cargo.github.io/">Cargo Project</a></td>
 <td align="left">Start/stop/configure J2EE containers and deploy to them.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="https://confluence.atlassian.com/display/CLOVER/Clover-for-Maven+2"> <tt>clover</tt></a></td>
+<td align="left"><a class="externalLink" href="https://confluence.atlassian.com/display/CLOVER/Clover-for-Maven+2"> <code>clover</code></a></td>
 <td align="left"><a class="externalLink" href="https://www.atlassian.com/software/clover/">Atlassian Clover</a></td>
 <td align="left">Generate a Clover report.</td></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html"> <tt>jetty</tt></a></td>
+<td align="left"><a class="externalLink" href="https://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html"> <code>jetty</code></a></td>
 <td align="left"><a class="externalLink" href="https://www.eclipse.org/jetty/">Jetty Project</a></td>
 <td align="left">Jetty Run a Jetty container for rapid webapp development.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="http://www.triemax.com/products/jalopy/manual/plugin-maven.html"> <tt>jalopy</tt></a></td>
+<td align="left"><a class="externalLink" href="http://www.triemax.com/products/jalopy/manual/plugin-maven.html"> <code>jalopy</code></a></td>
 <td align="left"><a class="externalLink" href="http://www.triemax.com/">Triemax</a></td>
 <td align="left">Use Jalopy to format your source code.</td></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://creadur.apache.org/rat/"> <tt>rat</tt></a></td>
+<td align="left"><a class="externalLink" href="https://creadur.apache.org/rat/"> <code>rat</code></a></td>
 <td align="left"><a class="externalLink" href="https://creadur.apache.org/">Apache Creadur Project</a></td>
 <td align="left">Release Audit Tool (RAT) to verify files.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="https://geronimo.apache.org/maven/genesis/plugins/tools-maven-plugin/index.html"> <tt>Genesis Plugins</tt></a></td>
+<td align="left"><a class="externalLink" href="https://geronimo.apache.org/maven/genesis/plugins/tools-maven-plugin/index.html"> <code>Genesis Plugins</code></a></td>
 <td align="left"><a class="externalLink" href="https://geronimo.apache.org/">Apache Geronimo Project</a></td>
 <td align="left">Verify legal files in artifacts.</td></tr>
 <tr class="b">
-<td align="left"><a class="externalLink" href="https://tomcat.apache.org/maven-plugin.html"> <tt>Apache Tomcat</tt></a></td>
+<td align="left"><a class="externalLink" href="https://tomcat.apache.org/maven-plugin.html"> <code>Apache Tomcat</code></a></td>
 <td align="left"><a class="externalLink" href="https://tomcat.apache.org/maven-plugin.html">Apache Tomcat Project</a></td>
 <td align="left">Run an Apache Tomcat container for rapid webapp development.</td></tr>
 <tr class="a">
-<td align="left"><a class="externalLink" href="https://jeremylong.github.io/DependencyCheck/"> <tt>OWASP dependency-check</tt></a></td>
+<td align="left"><a class="externalLink" href="https://jeremylong.github.io/DependencyCheck/"> <code>OWASP dependency-check</code></a></td>
 <td align="left"><a class="externalLink" href="https://www.owasp.org/index.php/OWASP_Dependency_Check">OWASP Dependency-check Project</a></td>
-<td align="left">Run OWASP Dependency-Check, a utility that identifies project dependencies and checks if there are any known, publicly disclosed, vulnerabilities..</td></tr></table></div></div>
-<div class="section">
+<td align="left">Run OWASP Dependency-Check, a utility that identifies project dependencies and checks if there are any known, publicly disclosed, vulnerabilities..</td></tr></table></section></section><section>
 <h3><a name="Resources"></a>Resources</h3>
 <ol style="list-style-type: decimal">
-<li><a href="../guides/mini/guide-configuring-plugins.html">Guide to Configuring Plugins</a></li></ol></div></div>
+<li><a href="../guides/mini/guide-configuring-plugins.html">Guide to Configuring Plugins</a></li></ol></section></section>
         </div>
       </div>
     </div>

Modified: maven/website/content/plugins/localization.html
==============================================================================
--- maven/website/content/plugins/localization.html (original)
+++ maven/website/content/plugins/localization.html Sun Jun  9 13:59:34 2019
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from content/apt/plugins/localization.apt at 2019-06-09
+ | Generated by Apache Maven Doxia Site Renderer 1.9 from content/apt/plugins/localization.apt at 2019-06-09
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
@@ -121,7 +121,7 @@ Vincent Siveton" />
           </div>
         </div>
         <div id="bodyColumn"  class="span10" >
-<div class="section">
+<section>
 <h2><a name="Localization_of_Plugins"></a>Localization of Plugins</h2>
 <p>Most of the plugins involved with the site generation are fully internationalized. This means that adapting them to another language, a process known as localization, is very easy. All that is needed is to download a couple of properties files and start translating the texts in them. If you want to provide a patch for an unsupported language, there are detailed instructions below.</p>
 <p>For the basic site generation there are currently files for three components that needs to be localized to support a new language: Maven Site Plugin, Maven Project Info Reports Plugin and Maven Doxia Tools.</p>
@@ -506,13 +506,12 @@ Vincent Siveton" />
 <td align="left">OK</td>
 <td align="left"><a href="/plugins/maven-site-plugin/l10n-status.html">l10n report</a></td>
 <td align="left"><a class="externalLink" href="https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-site-plugin/src/main/resources/">SVN</a></td></tr></table>
-<p>Is your favourite plugin missing a localization for your language? Please help us expand the language support by following the instructions below.</p>
-<div class="section">
+<p>Is your favourite plugin missing a localization for your language? Please help us expand the language support by following the instructions below.</p><section>
 <h3><a name="Localizing_a_Plugin"></a>Localizing a Plugin</h3>
 <ul>
 <li>Check out the source code for the plugin you want to add a translation to.</li>
-<li>Find the resource bundles that needs to be translated. They are often found in the <tt>src/main/resources</tt> folder.</li>
-<li>Copy the basefile for the bundle, i.e. the one <b>without</b> a language extension. The copy should have the same name as the original file, except for the addition of a language extension. If, for example, you want to translate the Checkstyle Plugin into Spanish, you would copy <tt>src/main/resources/checkstyle-report.properties</tt> to <tt>src/main/resources/checkstyle-report_es.properties</tt>.</li>
+<li>Find the resource bundles that needs to be translated. They are often found in the <code>src/main/resources</code> folder.</li>
+<li>Copy the basefile for the bundle, i.e. the one <b>without</b> a language extension. The copy should have the same name as the original file, except for the addition of a language extension. If, for example, you want to translate the Checkstyle Plugin into Spanish, you would copy <code>src/main/resources/checkstyle-report.properties</code> to <code>src/main/resources/checkstyle-report_es.properties</code>.</li>
 <li>Edit the new file and translate all the properties. Do not change the formating of the file, i.e. keep the current indentation and line breaks. This makes it easy to use a graphical diff tool to find missing keys in the file.</li>
 <li>Convert the new file so that all non-US-ASCII characters are transformed into Unicode escapes, see below for a tool that can help with this.</li>
 <li>Run &quot;mvn install&quot; for the plugin.</li>
@@ -532,34 +531,28 @@ Vincent Siveton" />
 <li>When you are happy with your translation, create an issue in JIRA for the plugin in question, with a description like this: &quot;Add Spanish translation&quot;. Take note of the issue number.</li>
 <li>Create a patch file that contains your new translation. Use the issue number when you name the file:
 <div class="source"><pre class="prettyprint linenums">svn diff &gt; MYISSUE-123.patch</pre></div></li>
-<li>Attach your patch file to the issue in JIRA.</li></ul></div>
-<div class="section">
+<li>Attach your patch file to the issue in JIRA.</li></ul></section><section>
 <h3><a name="Tools"></a>Tools</h3>
 <p>There is a command line tool called <b>native2ascii</b> that can be used to convert a text file to use Unicode-encoded characters instead of native-encoded characters. This is part of the Java SDK and you can <a class="externalLink" href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/native2ascii.html">read more about it here</a>. You use it like this:</p>
-<div class="source"><pre class="prettyprint linenums">native2ascii checkstyle-report_es.properties checkstyle-report_es-encoded.properties</pre></div>
-<div class="section">
+<div class="source"><pre class="prettyprint linenums">native2ascii checkstyle-report_es.properties checkstyle-report_es-encoded.properties</pre></div><section>
 <h4><a name="Tools_to_find_out_the_charset_of_a_file"></a>Tools to find out the charset of a file</h4>
 <ul>
-<li>Unix <tt>file</tt> command</li>
+<li>Unix <code>file</code> command</li>
 <li><a class="externalLink" href="http://cpdetector.sourceforge.net/">cpdetector</a></li>
 <li><a class="externalLink" href="http://plugins.intellij.net/plugin/?id=24">IntelliJ IDEA ShowEncodingPlugin</a></li>
-<li><a class="externalLink" href="http://notepad-plus.sourceforge.net/">Notepad++</a></li></ul></div>
-<div class="section">
+<li><a class="externalLink" href="http://notepad-plus.sourceforge.net/">Notepad++</a></li></ul></section><section>
 <h4><a name="Tools_to_write_a_file_in_a_given_charset"></a>Tools to write a file in a given charset</h4>
-<p>Any editor like Notepad++, Eclipse, IntelliJ IDEA, ...</p></div>
-<div class="section">
+<p>Any editor like Notepad++, Eclipse, IntelliJ IDEA, ...</p></section><section>
 <h4><a name="Tools_to_convert_a_file_from_one_encoding_to_another_encoding"></a>Tools to convert a file from one encoding to another encoding</h4>
 <ul>
-<li>Unix <tt>iconv</tt> command</li>
-<li>Notepad++</li></ul></div>
-<div class="section">
+<li>Unix <code>iconv</code> command</li>
+<li>Notepad++</li></ul></section><section>
 <h4><a name="IDE_plugins"></a>IDE plugins</h4>
 <ul>
-<li><a class="externalLink" href="http://propedit.sourceforge.jp/index_en.html">Properties Editor Eclipse Plugin</a></li></ul></div></div>
-<div class="section">
+<li><a class="externalLink" href="http://propedit.sourceforge.jp/index_en.html">Properties Editor Eclipse Plugin</a></li></ul></section></section><section>
 <h3><a name="References"></a>References</h3>
 <p>Please refer to the <a class="externalLink" href="http://java.sun.com/javase/technologies/core/basic/intl/">Java Internationalization home page</a> for an introduction to the topic.</p>
-<p>You can also refer to this Sun FAQ: <a class="externalLink" href="http://developers.sun.com/global/technology/standards/reference/faqs/determining-file-encoding.html">How Can I Determine the Encoding of a File?</a></p></div></div>
+<p>You can also refer to this Sun FAQ: <a class="externalLink" href="http://developers.sun.com/global/technology/standards/reference/faqs/determining-file-encoding.html">How Can I Determine the Encoding of a File?</a></p></section></section>
         </div>
       </div>
     </div>