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 2021/12/02 20:29:29 UTC

svn commit: r1895505 [12/14] - in /maven/website/content: ./ apache-resource-bundles/ archives/maven-2.x/ background/ css/ developers/ developers/conventions/ developers/release/ developers/website/ docs/ docs/2.0.1/ docs/2.0.10/ docs/2.0.11/ docs/2.0....

Modified: maven/website/content/run.html
==============================================================================
--- maven/website/content/run.html (original)
+++ maven/website/content/run.html Thu Dec  2 20:29:27 2021
@@ -1,18 +1,18 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/markdown/run.md at 2021-12-02
- | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
+ | Generated by Apache Maven Doxia Site Renderer 1.10 from content/markdown/run.md at 2021-12-02
+ | Rendered using Apache Maven Fluido Skin 1.10.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
-    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
+    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.10" />
     <title>Maven &#x2013; Running Apache Maven</title>
-    <link rel="stylesheet" href="./css/apache-maven-fluido-1.9.1-SNAPSHOT.min.css" />
+    <link rel="stylesheet" href="./css/apache-maven-fluido-1.10.0.min.css" />
     <link rel="stylesheet" href="./css/site.css" />
     <link rel="stylesheet" href="./css/print.css" media="print" />
-    <script src="./js/apache-maven-fluido-1.9.1-SNAPSHOT.min.js"></script>
+    <script src="./js/apache-maven-fluido-1.10.0.min.js"></script>
     <!-- Google Analytics -->
     <script>
       (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
@@ -146,24 +146,19 @@ KIND, either express or implied.  See th
 specific language governing permissions and limitations
 under the License.
 -->
-The syntax for running Maven is as follows:
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">mvn [options] [&lt;goal(s)&gt;] [&lt;phase(s)&gt;]
-</pre></div></div>
+<p>The syntax for running Maven is as follows:</p>
 
+<div class="source"><pre class="prettyprint linenums"><code>mvn [options] [&lt;goal(s)&gt;] [&lt;phase(s)&gt;]
+</code></pre></div>
 <p>All available options are documented in the built-in help that you can access with</p>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">mvn -h
-</pre></div></div>
-
+<div class="source"><pre class="prettyprint linenums"><code>mvn -h
+</code></pre></div>
 <p>The typical invocation for building a Maven project uses a Maven life cycle phase. E.g.</p>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">mvn verify
-</pre></div></div>
-
+<div class="source"><pre class="prettyprint linenums"><code>mvn verify
+</code></pre></div>
 <p>The built-in lifecycles and their phases, in order, are:</p>
 <ul>
 
@@ -173,38 +168,37 @@ The syntax for running Maven is as follo
 </li>
 <li>
 
-<p>default - validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy</p>
+<p>default - validate, initialize, generate-sources, process-sources, generate-resources,
+process-resources, compile, process-classes, generate-test-sources, process-test-sources,
+generate-test-resources, process-test-resources, test-compile, process-test-classes,
+test, prepare-package, package, pre-integration-test, integration-test, post-integration-test,
+verify, install, deploy</p>
 </li>
 <li>
 
 <p>site - pre-site, site, post-site, site-deploy</p>
 </li>
 </ul>
-<p>A fresh build of a project generating all packaged outputs and the documentation site and deploying it to a repository manager could be done with</p>
-
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">mvn clean deploy site-deploy
-</pre></div></div>
+<p>A fresh build of a project generating all packaged outputs and the documentation site
+and deploying it to a repository manager could be done with</p>
 
+<div class="source"><pre class="prettyprint linenums"><code>mvn clean deploy site-deploy
+</code></pre></div>
 <p>Just creating the package and installing it in the local repository for re-use from other projects can be done with</p>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">mvn verify
-</pre></div></div>
-
+<div class="source"><pre class="prettyprint linenums"><code>mvn verify
+</code></pre></div>
 <p>This is the most common build invocation for a Maven project.</p>
-<p>When not working with a project, and in some other use cases, you might want to invoke a specific task implemented by a part of Maven - this is called a <b>goal</b> of a plugin. E.g.:</p>
-
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">mvn archetype:generate
-</pre></div></div>
+<p>When not working with a project, and in some other use cases, you might want to invoke
+a specific task implemented by a part of Maven - this is called a <b>goal</b> of a plugin.
+E.g.:</p>
 
+<div class="source"><pre class="prettyprint linenums"><code>mvn archetype:generate
+</code></pre></div>
 <p>or</p>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">mvn checkstyle:check
-</pre></div></div>
-
+<div class="source"><pre class="prettyprint linenums"><code>mvn checkstyle:check
+</code></pre></div>
 <p>There are many different plugins available and they all implement different goals.</p>
 <p>Further resources:</p>
 <ul>

Modified: maven/website/content/scm.html
==============================================================================
--- maven/website/content/scm.html (original)
+++ maven/website/content/scm.html Thu Dec  2 20:29:27 2021
@@ -1,19 +1,19 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/xdoc/scm.xml at 2021-12-02
- | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
+ | Generated by Apache Maven Doxia Site Renderer 1.10 from content/xdoc/scm.xml at 2021-12-02
+ | Rendered using Apache Maven Fluido Skin 1.10.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
-    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
+    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.10" />
     <meta name="author" content="Benjamin Bentmann" />
     <title>Maven &#x2013; Source Repository</title>
-    <link rel="stylesheet" href="./css/apache-maven-fluido-1.9.1-SNAPSHOT.min.css" />
+    <link rel="stylesheet" href="./css/apache-maven-fluido-1.10.0.min.css" />
     <link rel="stylesheet" href="./css/site.css" />
     <link rel="stylesheet" href="./css/print.css" media="print" />
-    <script src="./js/apache-maven-fluido-1.9.1-SNAPSHOT.min.js"></script>
+    <script src="./js/apache-maven-fluido-1.10.0.min.js"></script>
     <!-- Google Analytics -->
     <script>
       (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
@@ -162,7 +162,7 @@
             
 <tr class="a">
               
-<td>Apache Maven <a class="externalLink" href="https://github.com/apache/maven-sources/blob/master/default.xml">full source code</a></td>
+<td align="left">Apache Maven <a class="externalLink" href="https://github.com/apache/maven-sources/blob/master/default.xml">full source code</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-sources.git">https://gitbox.apache.org/repos/asf/maven-sources.git</a></pre></div></td>
@@ -237,7 +237,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/">Apache Maven Site</a></td>
+<td align="left"><a href="/">Apache Maven Site</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-site.git">https://gitbox.apache.org/repos/asf/maven-site.git</a></pre></div></td>
@@ -261,7 +261,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/ref/current/">Apache Maven</a></td>
+<td align="left"><a href="/ref/current/">Apache Maven</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven.git">https://gitbox.apache.org/repos/asf/maven.git</a></pre></div></td>
@@ -273,7 +273,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/core-its/">Apache Maven Core ITs</a></td>
+<td align="left"><a href="/core-its/">Apache Maven Core ITs</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-integration-testing.git">https://gitbox.apache.org/repos/asf/maven-integration-testing.git</a></pre></div></td>
@@ -308,7 +308,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/archetype/">Apache Maven Archetype</a></td>
+<td align="left"><a href="/archetype/">Apache Maven Archetype</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-archetype.git">https://gitbox.apache.org/repos/asf/maven-archetype.git</a></pre></div></td>
@@ -320,7 +320,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/archetypes/">Apache Maven Archetypes</a></td>
+<td align="left"><a href="/archetypes/">Apache Maven Archetypes</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-archetypes.git">https://gitbox.apache.org/repos/asf/maven-archetypes.git</a></pre></div></td>
@@ -332,7 +332,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/resolver/">Apache Maven Artifact Resolver</a></td>
+<td align="left"><a href="/resolver/">Apache Maven Artifact Resolver</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-resolver.git">https://gitbox.apache.org/repos/asf/maven-resolver.git</a></pre></div></td>
@@ -344,7 +344,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/resolver-ant-tasks/">Apache Maven Artifact Resolver Ant Tasks</a></td>
+<td align="left"><a href="/resolver-ant-tasks/">Apache Maven Artifact Resolver Ant Tasks</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-resolver-ant-tasks.git">https://gitbox.apache.org/repos/asf/maven-resolver-ant-tasks.git</a></pre></div></td>
@@ -356,7 +356,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a class="externalLink" href="https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-dist-tool/job/master/site/">Apache Maven Distribution Checking Tool</a></td>
+<td align="left"><a class="externalLink" href="https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-dist-tool/job/master/site/">Apache Maven Distribution Checking Tool</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-dist-tool.git">https://gitbox.apache.org/repos/asf/maven-dist-tool.git</a></pre></div></td>
@@ -368,7 +368,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/enforcer/">Apache Maven Enforcer</a></td>
+<td align="left"><a href="/enforcer/">Apache Maven Enforcer</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-enforcer.git">https://gitbox.apache.org/repos/asf/maven-enforcer.git</a></pre></div></td>
@@ -380,7 +380,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/jxr/">Apache Maven JXR</a></td>
+<td align="left"><a href="/jxr/">Apache Maven JXR</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jxr.git">https://gitbox.apache.org/repos/asf/maven-jxr.git</a></pre></div></td>
@@ -392,7 +392,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/maven-indexer/">Apache Maven Indexer</a></td>
+<td align="left"><a href="/maven-indexer/">Apache Maven Indexer</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-indexer.git">https://gitbox.apache.org/repos/asf/maven-indexer.git</a></pre></div></td>
@@ -404,7 +404,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugin-testing/">Apache Maven Plugin Testing</a></td>
+<td align="left"><a href="/plugin-testing/">Apache Maven Plugin Testing</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-plugin-testing.git">https://gitbox.apache.org/repos/asf/maven-plugin-testing.git</a></pre></div></td>
@@ -416,7 +416,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugin-tools/">Apache Maven Plugin Tools</a></td>
+<td align="left"><a href="/plugin-tools/">Apache Maven Plugin Tools</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-plugin-tools.git">https://gitbox.apache.org/repos/asf/maven-plugin-tools.git</a></pre></div></td>
@@ -428,7 +428,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/maven-release/">Apache Maven Release</a> (Release api and plugin)</td>
+<td align="left"><a href="/maven-release/">Apache Maven Release</a> (Release api and plugin)</td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-release.git">https://gitbox.apache.org/repos/asf/maven-release.git</a></pre></div></td>
@@ -440,7 +440,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/scm/">Apache Maven SCM</a></td>
+<td align="left"><a href="/scm/">Apache Maven SCM</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-scm.git">https://gitbox.apache.org/repos/asf/maven-scm.git</a></pre></div></td>
@@ -452,7 +452,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/surefire/">Apache Maven Surefire</a></td>
+<td align="left"><a href="/surefire/">Apache Maven Surefire</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-surefire.git">https://gitbox.apache.org/repos/asf/maven-surefire.git</a></pre></div></td>
@@ -464,7 +464,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/wagon/">Apache Maven Wagon</a></td>
+<td align="left"><a href="/wagon/">Apache Maven Wagon</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-wagon.git">https://gitbox.apache.org/repos/asf/maven-wagon.git</a></pre></div></td>
@@ -481,7 +481,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-acr-plugin/">Apache Maven ACR Plugin</a></td>
+<td align="left"><a href="/plugins/maven-acr-plugin/">Apache Maven ACR Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-acr-plugin.git">https://gitbox.apache.org/repos/asf/maven-acr-plugin.git</a></pre></div></td>
@@ -493,7 +493,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-ant-plugin/">Apache Maven Ant Plugin</a></td>
+<td align="left"><a href="/plugins/maven-ant-plugin/">Apache Maven Ant Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-ant-plugin.git">https://gitbox.apache.org/repos/asf/maven-ant-plugin.git</a></pre></div></td>
@@ -505,7 +505,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-antrun-plugin/">Apache Maven AntRun Plugin</a></td>
+<td align="left"><a href="/plugins/maven-antrun-plugin/">Apache Maven AntRun Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-antrun-plugin.git">https://gitbox.apache.org/repos/asf/maven-antrun-plugin.git</a></pre></div></td>
@@ -517,7 +517,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-assembly-plugin/">Apache Maven Assembly Plugin</a></td>
+<td align="left"><a href="/plugins/maven-assembly-plugin/">Apache Maven Assembly Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git">https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git</a></pre></div></td>
@@ -529,7 +529,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-changelog-plugin/">Apache Maven Changelog Plugin</a></td>
+<td align="left"><a href="/plugins/maven-changelog-plugin/">Apache Maven Changelog Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-changelog-plugin.git">https://gitbox.apache.org/repos/asf/maven-changelog-plugin.git</a></pre></div></td>
@@ -541,7 +541,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-changes-plugin/">Apache Maven Changes Plugin</a></td>
+<td align="left"><a href="/plugins/maven-changes-plugin/">Apache Maven Changes Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-changes-plugin.git">https://gitbox.apache.org/repos/asf/maven-changes-plugin.git</a></pre></div></td>
@@ -553,7 +553,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-checkstyle-plugin/">Apache Maven Checkstyle Plugin</a></td>
+<td align="left"><a href="/plugins/maven-checkstyle-plugin/">Apache Maven Checkstyle Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git">https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git</a></pre></div></td>
@@ -565,7 +565,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-clean-plugin/">Apache Maven Clean Plugin</a></td>
+<td align="left"><a href="/plugins/maven-clean-plugin/">Apache Maven Clean Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-clean-plugin.git">https://gitbox.apache.org/repos/asf/maven-clean-plugin.git</a></pre></div></td>
@@ -577,7 +577,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-compiler-plugin/">Apache Maven Compiler Plugin</a></td>
+<td align="left"><a href="/plugins/maven-compiler-plugin/">Apache Maven Compiler Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git">https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git</a></pre></div></td>
@@ -589,7 +589,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-dependency-plugin/">Apache Maven Dependency Plugin</a></td>
+<td align="left"><a href="/plugins/maven-dependency-plugin/">Apache Maven Dependency Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git">https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git</a></pre></div></td>
@@ -601,7 +601,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-deploy-plugin/">Apache Maven Deploy Plugin</a></td>
+<td align="left"><a href="/plugins/maven-deploy-plugin/">Apache Maven Deploy Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git">https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git</a></pre></div></td>
@@ -613,7 +613,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-doap-plugin/">Apache Maven DOAP Plugin</a></td>
+<td align="left"><a href="/plugins/maven-doap-plugin/">Apache Maven DOAP Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-doap-plugin.git">https://gitbox.apache.org/repos/asf/maven-doap-plugin.git</a></pre></div></td>
@@ -625,7 +625,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-docck-plugin/">Apache Maven Documentation Checker Plugin</a></td>
+<td align="left"><a href="/plugins/maven-docck-plugin/">Apache Maven Documentation Checker Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-docck-plugin.git">https://gitbox.apache.org/repos/asf/maven-docck-plugin.git</a></pre></div></td>
@@ -637,7 +637,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-ear-plugin/">Apache Maven EAR Plugin</a></td>
+<td align="left"><a href="/plugins/maven-ear-plugin/">Apache Maven EAR Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-ear-plugin.git">https://gitbox.apache.org/repos/asf/maven-ear-plugin.git</a></pre></div></td>
@@ -649,7 +649,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-ejb-plugin/">Apache Maven EJB Plugin</a></td>
+<td align="left"><a href="/plugins/maven-ejb-plugin/">Apache Maven EJB Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-ejb-plugin.git">https://gitbox.apache.org/repos/asf/maven-ejb-plugin.git</a></pre></div></td>
@@ -661,7 +661,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-gpg-plugin/">Apache Maven GPG Plugin</a></td>
+<td align="left"><a href="/plugins/maven-gpg-plugin/">Apache Maven GPG Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-gpg-plugin.git">https://gitbox.apache.org/repos/asf/maven-gpg-plugin.git</a></pre></div></td>
@@ -673,7 +673,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-help-plugin/">Apache Maven Help Plugin</a></td>
+<td align="left"><a href="/plugins/maven-help-plugin/">Apache Maven Help Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-help-plugin.git">https://gitbox.apache.org/repos/asf/maven-help-plugin.git</a></pre></div></td>
@@ -685,7 +685,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-install-plugin/">Apache Maven Install Plugin</a></td>
+<td align="left"><a href="/plugins/maven-install-plugin/">Apache Maven Install Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-install-plugin.git">https://gitbox.apache.org/repos/asf/maven-install-plugin.git</a></pre></div></td>
@@ -697,7 +697,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-invoker-plugin/">Apache Maven Invoker Plugin</a></td>
+<td align="left"><a href="/plugins/maven-invoker-plugin/">Apache Maven Invoker Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git">https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git</a></pre></div></td>
@@ -709,7 +709,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-jar-plugin/">Apache Maven JAR Plugin</a></td>
+<td align="left"><a href="/plugins/maven-jar-plugin/">Apache Maven JAR Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jar-plugin.git">https://gitbox.apache.org/repos/asf/maven-jar-plugin.git</a></pre></div></td>
@@ -721,7 +721,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-jarsigner-plugin/">Apache Maven Jarsigner Plugin</a></td>
+<td align="left"><a href="/plugins/maven-jarsigner-plugin/">Apache Maven Jarsigner Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jarsigner-plugin.git">https://gitbox.apache.org/repos/asf/maven-jarsigner-plugin.git</a></pre></div></td>
@@ -733,7 +733,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-javadoc-plugin/">Apache Maven Javadoc Plugin</a></td>
+<td align="left"><a href="/plugins/maven-javadoc-plugin/">Apache Maven Javadoc Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git">https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git</a></pre></div></td>
@@ -745,7 +745,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-jdeprscan-plugin/">Apache Maven JDepRScan Plugin</a></td>
+<td align="left"><a href="/plugins/maven-jdeprscan-plugin/">Apache Maven JDepRScan Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jdeprscan-plugin.git">https://gitbox.apache.org/repos/asf/maven-jdeprscan-plugin.git</a></pre></div></td>
@@ -757,7 +757,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-jdeps-plugin/">Apache Maven JDeps Plugin</a></td>
+<td align="left"><a href="/plugins/maven-jdeps-plugin/">Apache Maven JDeps Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git">https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git</a></pre></div></td>
@@ -769,7 +769,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-jlink-plugin/">Apache Maven JLink Plugin</a></td>
+<td align="left"><a href="/plugins/maven-jlink-plugin/">Apache Maven JLink Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jlink-plugin.git">https://gitbox.apache.org/repos/asf/maven-jlink-plugin.git</a></pre></div></td>
@@ -781,7 +781,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-jmod-plugin/">Apache Maven JMod Plugin</a></td>
+<td align="left"><a href="/plugins/maven-jmod-plugin/">Apache Maven JMod Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jmod-plugin.git">https://gitbox.apache.org/repos/asf/maven-jmod-plugin.git</a></pre></div></td>
@@ -793,7 +793,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-linkcheck-plugin/">Apache Maven Linkcheck Plugin</a></td>
+<td align="left"><a href="/plugins/maven-linkcheck-plugin/">Apache Maven Linkcheck Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-linkcheck-plugin.git">https://gitbox.apache.org/repos/asf/maven-linkcheck-plugin.git</a></pre></div></td>
@@ -805,7 +805,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-patch-plugin/">Apache Maven Patch Plugin</a></td>
+<td align="left"><a href="/plugins/maven-patch-plugin/">Apache Maven Patch Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-patch-plugin.git">https://gitbox.apache.org/repos/asf/maven-patch-plugin.git</a></pre></div></td>
@@ -817,7 +817,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-pdf-plugin/">Apache Maven PDF Plugin</a></td>
+<td align="left"><a href="/plugins/maven-pdf-plugin/">Apache Maven PDF Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-pdf-plugin.git">https://gitbox.apache.org/repos/asf/maven-pdf-plugin.git</a></pre></div></td>
@@ -829,7 +829,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-pmd-plugin/">Apache Maven PMD Plugin</a></td>
+<td align="left"><a href="/plugins/maven-pmd-plugin/">Apache Maven PMD Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git">https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git</a></pre></div></td>
@@ -841,7 +841,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-project-info-reports-plugin/">Apache Maven Project Info Reports Plugin</a></td>
+<td align="left"><a href="/plugins/maven-project-info-reports-plugin/">Apache Maven Project Info Reports Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-project-info-reports-plugin.git">https://gitbox.apache.org/repos/asf/maven-project-info-reports-plugin.git</a></pre></div></td>
@@ -853,7 +853,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-rar-plugin/">Apache Maven RAR Plugin</a></td>
+<td align="left"><a href="/plugins/maven-rar-plugin/">Apache Maven RAR Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-rar-plugin.git">https://gitbox.apache.org/repos/asf/maven-rar-plugin.git</a></pre></div></td>
@@ -865,7 +865,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-remote-resources-plugin/">Apache Maven Remote Resources Plugin</a></td>
+<td align="left"><a href="/plugins/maven-remote-resources-plugin/">Apache Maven Remote Resources Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git">https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git</a></pre></div></td>
@@ -877,7 +877,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-repository-plugin/">Apache Maven Repository Plugin</a></td>
+<td align="left"><a href="/plugins/maven-repository-plugin/">Apache Maven Repository Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-repository-plugin.git">https://gitbox.apache.org/repos/asf/maven-repository-plugin.git</a></pre></div></td>
@@ -889,7 +889,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-resources-plugin/">Apache Maven Resources Plugin</a></td>
+<td align="left"><a href="/plugins/maven-resources-plugin/">Apache Maven Resources Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-resources-plugin.git">https://gitbox.apache.org/repos/asf/maven-resources-plugin.git</a></pre></div></td>
@@ -901,7 +901,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-scm-publish-plugin/">Apache Maven SCM Publish Plugin</a></td>
+<td align="left"><a href="/plugins/maven-scm-publish-plugin/">Apache Maven SCM Publish Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-scm-publish-plugin.git">https://gitbox.apache.org/repos/asf/maven-scm-publish-plugin.git</a></pre></div></td>
@@ -913,7 +913,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-scripting-plugin/">Apache Maven Scripting Plugin</a></td>
+<td align="left"><a href="/plugins/maven-scripting-plugin/">Apache Maven Scripting Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-scripting-plugin.git">https://gitbox.apache.org/repos/asf/maven-scripting-plugin.git</a></pre></div></td>
@@ -925,7 +925,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-shade-plugin/">Apache Maven Shade Plugin</a></td>
+<td align="left"><a href="/plugins/maven-shade-plugin/">Apache Maven Shade Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-shade-plugin.git">https://gitbox.apache.org/repos/asf/maven-shade-plugin.git</a></pre></div></td>
@@ -937,7 +937,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-site-plugin/">Apache Maven Site Plugin</a></td>
+<td align="left"><a href="/plugins/maven-site-plugin/">Apache Maven Site Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-site-plugin.git">https://gitbox.apache.org/repos/asf/maven-site-plugin.git</a></pre></div></td>
@@ -949,7 +949,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-source-plugin/">Apache Maven Source Plugin</a></td>
+<td align="left"><a href="/plugins/maven-source-plugin/">Apache Maven Source Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-source-plugin.git">https://gitbox.apache.org/repos/asf/maven-source-plugin.git</a></pre></div></td>
@@ -961,7 +961,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-stage-plugin/">Apache Maven Stage Plugin</a></td>
+<td align="left"><a href="/plugins/maven-stage-plugin/">Apache Maven Stage Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-stage-plugin.git">https://gitbox.apache.org/repos/asf/maven-stage-plugin.git</a></pre></div></td>
@@ -973,7 +973,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-toolchains-plugin/">Apache Maven Toolchains Plugin</a></td>
+<td align="left"><a href="/plugins/maven-toolchains-plugin/">Apache Maven Toolchains Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git">https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git</a></pre></div></td>
@@ -985,7 +985,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/plugins/maven-verifier-plugin/">Apache Maven Verifier Plugin</a></td>
+<td align="left"><a href="/plugins/maven-verifier-plugin/">Apache Maven Verifier Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-verifier-plugin.git">https://gitbox.apache.org/repos/asf/maven-verifier-plugin.git</a></pre></div></td>
@@ -997,7 +997,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/plugins/maven-war-plugin/">Apache Maven WAR Plugin</a></td>
+<td align="left"><a href="/plugins/maven-war-plugin/">Apache Maven WAR Plugin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-war-plugin.git">https://gitbox.apache.org/repos/asf/maven-war-plugin.git</a></pre></div></td>
@@ -1014,7 +1014,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/pom/asf/">Apache Parent POM</a></td>
+<td align="left"><a href="/pom/asf/">Apache Parent POM</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-apache-parent.git">https://gitbox.apache.org/repos/asf/maven-apache-parent.git</a></pre></div></td>
@@ -1026,7 +1026,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/pom/maven/">Apache Maven Parent POMs</a></td>
+<td align="left"><a href="/pom/maven/">Apache Maven Parent POMs</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-parent.git">https://gitbox.apache.org/repos/asf/maven-parent.git</a></pre></div></td>
@@ -1043,7 +1043,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-archiver/">Apache Maven Archiver</a></td>
+<td align="left"><a href="/shared/maven-archiver/">Apache Maven Archiver</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-archiver.git">https://gitbox.apache.org/repos/asf/maven-archiver.git</a></pre></div></td>
@@ -1055,7 +1055,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-artifact-resolver/">Apache Maven Artifact Resolver</a></td>
+<td align="left"><a href="/shared/maven-artifact-resolver/">Apache Maven Artifact Resolver</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-artifact-resolver.git">https://gitbox.apache.org/repos/asf/maven-artifact-resolver.git</a></pre></div></td>
@@ -1067,7 +1067,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-artifact-transfer/">Apache Maven Artifact Transfer</a></td>
+<td align="left"><a href="/shared/maven-artifact-transfer/">Apache Maven Artifact Transfer</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git">https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git</a></pre></div></td>
@@ -1079,7 +1079,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-common-artifact-filters/">Apache MavenCommon Artifact Filters</a></td>
+<td align="left"><a href="/shared/maven-common-artifact-filters/">Apache MavenCommon Artifact Filters</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-common-artifact-filters.git">https://gitbox.apache.org/repos/asf/maven-common-artifact-filters.git</a></pre></div></td>
@@ -1091,7 +1091,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-dependency-analyzer/">Apache Maven Dependency Analyzer</a></td>
+<td align="left"><a href="/shared/maven-dependency-analyzer/">Apache Maven Dependency Analyzer</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-dependency-analyzer.git">https://gitbox.apache.org/repos/asf/maven-dependency-analyzer.git</a></pre></div></td>
@@ -1103,7 +1103,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-dependency-tree/">Apache Maven Dependency Tree</a></td>
+<td align="left"><a href="/shared/maven-dependency-tree/">Apache Maven Dependency Tree</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-dependency-tree.git">https://gitbox.apache.org/repos/asf/maven-dependency-tree.git</a></pre></div></td>
@@ -1115,7 +1115,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-downloader/">Apache Maven Downloader</a></td>
+<td align="left"><a href="/shared/maven-downloader/">Apache Maven Downloader</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-downloader.git">https://gitbox.apache.org/repos/asf/maven-downloader.git</a></pre></div></td>
@@ -1127,7 +1127,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-filtering/">Apache Maven Filtering</a></td>
+<td align="left"><a href="/shared/maven-filtering/">Apache Maven Filtering</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-filtering.git">https://gitbox.apache.org/repos/asf/maven-filtering.git</a></pre></div></td>
@@ -1139,7 +1139,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-invoker/">Apache Maven Invoker</a></td>
+<td align="left"><a href="/shared/maven-invoker/">Apache Maven Invoker</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-invoker.git">https://gitbox.apache.org/repos/asf/maven-invoker.git</a></pre></div></td>
@@ -1151,7 +1151,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-jarsigner/">Apache Maven Jarsigner</a></td>
+<td align="left"><a href="/shared/maven-jarsigner/">Apache Maven Jarsigner</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-jarsigner.git">https://gitbox.apache.org/repos/asf/maven-jarsigner.git</a></pre></div></td>
@@ -1163,7 +1163,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-mapping/">Apache Maven Mapping</a></td>
+<td align="left"><a href="/shared/maven-mapping/">Apache Maven Mapping</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-mapping.git">https://gitbox.apache.org/repos/asf/maven-mapping.git</a></pre></div></td>
@@ -1175,7 +1175,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-osgi/">Apache Maven OSGi</a></td>
+<td align="left"><a href="/shared/maven-osgi/">Apache Maven OSGi</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-osgi.git">https://gitbox.apache.org/repos/asf/maven-osgi.git</a></pre></div></td>
@@ -1187,7 +1187,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-project-utils/">Apache Maven Project Utils</a></td>
+<td align="left"><a href="/shared/maven-project-utils/">Apache Maven Project Utils</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-project-utils.git">https://gitbox.apache.org/repos/asf/maven-project-utils.git</a></pre></div></td>
@@ -1199,7 +1199,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-reporting-api/">Apache Maven Reporting API</a></td>
+<td align="left"><a href="/shared/maven-reporting-api/">Apache Maven Reporting API</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-reporting-api.git">https://gitbox.apache.org/repos/asf/maven-reporting-api.git</a></pre></div></td>
@@ -1211,7 +1211,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-reporting-exec/">Apache Maven Reporting Executor</a></td>
+<td align="left"><a href="/shared/maven-reporting-exec/">Apache Maven Reporting Executor</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-reporting-exec.git">https://gitbox.apache.org/repos/asf/maven-reporting-exec.git</a></pre></div></td>
@@ -1223,7 +1223,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-reporting-impl/">Apache Maven Reporting Implementation</a></td>
+<td align="left"><a href="/shared/maven-reporting-impl/">Apache Maven Reporting Implementation</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-reporting-impl.git">https://gitbox.apache.org/repos/asf/maven-reporting-impl.git</a></pre></div></td>
@@ -1235,7 +1235,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-repository-builder/">Apache Maven Respository Builder</a></td>
+<td align="left"><a href="/shared/maven-repository-builder/">Apache Maven Respository Builder</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-repository-builder.git">https://gitbox.apache.org/repos/asf/maven-repository-builder.git</a></pre></div></td>
@@ -1247,7 +1247,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-runtime/">Apache Maven Runtime</a></td>
+<td align="left"><a href="/shared/maven-runtime/">Apache Maven Runtime</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-runtime.git">https://gitbox.apache.org/repos/asf/maven-runtime.git</a></pre></div></td>
@@ -1259,7 +1259,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-script-interpreter/">Apache Maven Script Interpreter</a></td>
+<td align="left"><a href="/shared/maven-script-interpreter/">Apache Maven Script Interpreter</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-script-interpreter.git">https://gitbox.apache.org/repos/asf/maven-script-interpreter.git</a></pre></div></td>
@@ -1271,7 +1271,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-shared-incremental/">Apache Maven Shared Incremental</a></td>
+<td align="left"><a href="/shared/maven-shared-incremental/">Apache Maven Shared Incremental</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-shared-incremental.git">https://gitbox.apache.org/repos/asf/maven-shared-incremental.git</a></pre></div></td>
@@ -1283,7 +1283,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-shared-io/">Apache Maven Shared IO</a></td>
+<td align="left"><a href="/shared/maven-shared-io/">Apache Maven Shared IO</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-shared-io.git">https://gitbox.apache.org/repos/asf/maven-shared-io.git</a></pre></div></td>
@@ -1295,7 +1295,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-shared-jar/">Apache Maven Shared Jar</a></td>
+<td align="left"><a href="/shared/maven-shared-jar/">Apache Maven Shared Jar</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-shared-jar.git">https://gitbox.apache.org/repos/asf/maven-shared-jar.git</a></pre></div></td>
@@ -1307,7 +1307,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-shared-resources/">Apache Maven Shared Resources</a></td>
+<td align="left"><a href="/shared/maven-shared-resources/">Apache Maven Shared Resources</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-shared-resources.git">https://gitbox.apache.org/repos/asf/maven-shared-resources.git</a></pre></div></td>
@@ -1319,7 +1319,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/shared/maven-shared-utils/">Apache Maven Shared Utils</a></td>
+<td align="left"><a href="/shared/maven-shared-utils/">Apache Maven Shared Utils</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-shared-utils.git">https://gitbox.apache.org/repos/asf/maven-shared-utils.git</a></pre></div></td>
@@ -1331,7 +1331,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/shared/maven-verifier/">Apache Maven Verifier</a></td>
+<td align="left"><a href="/shared/maven-verifier/">Apache Maven Verifier</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-verifier.git">https://gitbox.apache.org/repos/asf/maven-verifier.git</a></pre></div></td>
@@ -1348,7 +1348,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/skins/maven-default-skin/">Apache Maven Default Skin</a></td>
+<td align="left"><a href="/skins/maven-default-skin/">Apache Maven Default Skin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-default-skin.git">https://gitbox.apache.org/repos/asf/maven-default-skin.git</a></pre></div></td>
@@ -1360,7 +1360,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td><a href="/skins/maven-fluido-skin/">Apache Maven Fluido Skin</a></td>
+<td align="left"><a href="/skins/maven-fluido-skin/">Apache Maven Fluido Skin</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://gitbox.apache.org/repos/asf/maven-fluido-skin.git">https://gitbox.apache.org/repos/asf/maven-fluido-skin.git</a></pre></div></td>
@@ -1388,7 +1388,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td>Maven Project (mainly KEYS)</td>
+<td align="left">Maven Project (mainly KEYS)</td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://svn.apache.org/viewvc/maven/project/">https://svn.apache.org/repos/asf/maven/project/</a></pre></div></td>
@@ -1398,7 +1398,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td><a href="/apache-resource-bundles/">Apache Resource Bundles</a></td>
+<td align="left"><a href="/apache-resource-bundles/">Apache Resource Bundles</a></td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://svn.apache.org/viewvc/maven/resources/trunk/">https://svn.apache.org/repos/asf/maven/resources/trunk/</a></pre></div></td>
@@ -1408,7 +1408,7 @@ repo start master --all</pre></div>
             
 <tr class="a">
               
-<td>Maven Sandbox</td>
+<td align="left">Maven Sandbox</td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://svn.apache.org/viewvc/maven/sandbox/trunk/">https://svn.apache.org/repos/asf/maven/sandbox/trunk/</a></pre></div></td>
@@ -1418,7 +1418,7 @@ repo start master --all</pre></div>
             
 <tr class="b">
               
-<td>A variety of other subsystems (including obsolete trees replaced by git)</td>
+<td align="left">A variety of other subsystems (including obsolete trees replaced by git)</td>
               
 <td>
 <div class="source"><pre class="prettyprint linenums"><a class="externalLink" href="https://svn.apache.org/viewvc/maven/">https://svn.apache.org/repos/asf/maven/</a></pre></div></td>

Modified: maven/website/content/security-plexus-archiver.html
==============================================================================
--- maven/website/content/security-plexus-archiver.html (original)
+++ maven/website/content/security-plexus-archiver.html Thu Dec  2 20:29:27 2021
@@ -1,18 +1,18 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/markdown/security-plexus-archiver.md at 2021-12-02
- | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
+ | Generated by Apache Maven Doxia Site Renderer 1.10 from content/markdown/security-plexus-archiver.md at 2021-12-02
+ | Rendered using Apache Maven Fluido Skin 1.10.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
-    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
+    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.10" />
     <title>Maven &#x2013; Zip Slip Vulnerability</title>
-    <link rel="stylesheet" href="./css/apache-maven-fluido-1.9.1-SNAPSHOT.min.css" />
+    <link rel="stylesheet" href="./css/apache-maven-fluido-1.10.0.min.css" />
     <link rel="stylesheet" href="./css/site.css" />
     <link rel="stylesheet" href="./css/print.css" media="print" />
-    <script src="./js/apache-maven-fluido-1.9.1-SNAPSHOT.min.js"></script>
+    <script src="./js/apache-maven-fluido-1.10.0.min.js"></script>
     <!-- Google Analytics -->
     <script>
       (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
@@ -139,20 +139,33 @@ KIND, either express or implied.  See th
 specific language governing permissions and limitations
 under the License.
 -->
-As part of [a broader research](https://snyk.io/research/zip-slip-vulnerability),
-the Snyk Security Research Team discovered
-an arbitrary file write generic vulnerability, that can be achieved using a 
-specially crafted zip (or bzip2, gzip, tar, xz, war) archive, that holds 
-path traversal filenames. So when the filename gets concatenated to the 
-target extraction directory, if the extraction tool used does not make 
-sufficient checks, the final path ends up outside of the target folder.
 
-<p>The Apache Maven team has been informed because the plexus-archiver library did not make sufficient checks and it is a library used by most of the packaging plugins. Affected versions of plexus-archiver are [,3.4]+[3.5], fixed versions are 3.4.1 &amp; 3.6.0, with issue management <a class="externalLink" href="https://github.com/codehaus-plexus/plexus-archiver/pull/87">plexus-archiver #87</a> and Snyk vulnerability report <a class="externalLink" href="https://snyk.io/vuln/SNYK-JAVA-ORGCODEHAUSPLEXUS-31680">SNYK-JAVA-ORGCODEHAUSPLEXUS-31680</a></p><section>
+<p>As part of <a class="externalLink" href="https://snyk.io/research/zip-slip-vulnerability">a broader research</a>,
+the Snyk Security Research Team discovered
+an arbitrary file write generic vulnerability, that can be achieved using a
+specially crafted zip (or bzip2, gzip, tar, xz, war) archive, that holds
+path traversal filenames. So when the filename gets concatenated to the
+target extraction directory, if the extraction tool used does not make
+sufficient checks, the final path ends up outside of the target folder.</p>
+<p>The Apache Maven team has been informed because the plexus-archiver library
+did not make sufficient checks and it is a library used by most of the
+packaging plugins.
+Affected versions of plexus-archiver are [,3.4]+[3.5], fixed versions are 3.4.1 &amp; 3.6.0,
+with issue management <a class="externalLink" href="https://github.com/codehaus-plexus/plexus-archiver/pull/87">plexus-archiver #87</a> and
+Snyk vulnerability report <a class="externalLink" href="https://snyk.io/vuln/SNYK-JAVA-ORGCODEHAUSPLEXUS-31680">SNYK-JAVA-ORGCODEHAUSPLEXUS-31680</a></p><section>
 <h2><a name="What_parts_of_Maven_are_vulnerable.3F"></a>What parts of Maven are vulnerable?</h2>
-<p>Apache Maven itself is not vulnerable, since Maven doesn&#x2019;t unpack by itself: unpacking actions are done by plugins.</p>
-<p>Reading malicious archives in memory is also not an issue, only when unpacking such archives to disk may cause issues, however in general Maven plugins don&#x2019;t unpack archives.</p>
-<p>The issue is regarding malicious artifacts and we haven&#x2019;t been able to create such artifacts with our Maven plugins, hence there&#x2019;s no additional action required to prevent the creation of malicious archives at this level.</p>
-<p>The following plugins use plexus-archiver to unpack dependencies to disk and have been identified as potential triggers for exposing the vulnerability. The matrix contains the name of the component/plugin, which versions are affected, which versions contain the fixed and the link to the corresponding issue.</p>
+<p>Apache Maven itself is not vulnerable, since Maven doesn't unpack by itself:
+unpacking actions are done by plugins.</p>
+<p>Reading malicious archives in memory is also not an issue, only when
+unpacking such archives to disk may cause issues, however in general
+Maven plugins don't unpack archives.</p>
+<p>The issue is regarding malicious artifacts and we haven't been able to create
+such artifacts with our Maven plugins, hence there's no additional action
+required to prevent the creation of malicious archives at this level.</p>
+<p>The following plugins use plexus-archiver to unpack dependencies to disk
+and have been identified as potential triggers for exposing the vulnerability.
+The matrix contains the name of the component/plugin, which versions are affected,
+which versions contain the fixed and the link to the corresponding issue.</p>
 
 <table border="0" class="table table-striped">
  
@@ -171,7 +184,7 @@ sufficient checks, the final path ends u
  
 <tr class="b">
    
-<td>maven-dependency-plugin</td>
+<td align="left">maven-dependency-plugin</td>
    
 <td>(,3.1.0]</td>
    
@@ -184,7 +197,7 @@ sufficient checks, the final path ends u
  
 <tr class="a">
    
-<td>maven-ear-plugin</td>
+<td align="left">maven-ear-plugin</td>
    
 <td>(,3.0.0]</td> 
    
@@ -197,7 +210,7 @@ sufficient checks, the final path ends u
  
 <tr class="b">
    
-<td>maven-javadoc-plugin</td>
+<td align="left">maven-javadoc-plugin</td>
    
 <td>[2.5,3.0.0]</td>
    
@@ -210,7 +223,7 @@ sufficient checks, the final path ends u
  
 <tr class="a">
    
-<td>maven-war-plugin</td>
+<td align="left">maven-war-plugin</td>
    
 <td>[2.1-alpha-1,3.2.0]</td>
    
@@ -223,7 +236,7 @@ sufficient checks, the final path ends u
   
 <tr class="b">
     
-<td>maven-plugin-plugin</td>
+<td align="left">maven-plugin-plugin</td>
     
 <td>[3.0,3.5.1]</td>
     
@@ -255,7 +268,7 @@ sufficient checks, the final path ends u
   
 <tr class="b">
     
-<td>maven-antrun-plugin</td>
+<td align="left">maven-antrun-plugin</td>
     
 <td>(,1.8]</td>
     
@@ -268,7 +281,7 @@ sufficient checks, the final path ends u
   
 <tr class="a">
     
-<td>maven-plugin-plugin:maven-script-ant</td>
+<td align="left">maven-plugin-plugin:maven-script-ant</td>
     
 <td>[2.0,3.5.2]</td>
     
@@ -294,16 +307,19 @@ sufficient checks, the final path ends u
 <li>maven-source-plugin</li>
 </ul></section><section>
 <h2><a name="When_are_you_affected_by_this_vulnerability.3F"></a>When are you affected by this vulnerability?</h2>
-<p>The vulnerability is like a Trojan Horse, the malicious archive must first enter the system, normally achieved with a downloaded of a dependency. Once downloaded there&#x2019;s no direct danger, the user must take some specific actions before becoming a victim. This only happens when all of the following criteria are met:</p>
+<p>The vulnerability is like a Trojan Horse, the malicious archive must first enter the system, normally achieved
+with a downloaded of a dependency. Once downloaded there's no direct danger, the user must take some specific
+actions before becoming a victim. This only happens when all of the following criteria are met:</p>
 <ul>
 
-<li>There&#x2019;s an archive available in a repository that is malicious.</li>
+<li>There's an archive available in a repository that is malicious.</li>
 <li>Your Maven project or one of its dependencies must find the malicious jar interesting enough to add it as a dependency.</li>
 <li>There must be a reason to unpack, as defined in the matrix above.</li>
 <li>The OS must allow the unpack process to put the malicious file at the specified location.</li>
 <li>The malicious file must be executed or used.</li>
 </ul>
-<p>The cause can be described as a breach in the chain of trust. Adding a dependency does imply that you trust it, but also that you trust all of the indirect dependencies. If there&#x2019;s no trust, you better not add that dependency.</p></section>
+<p>The cause can be described as a breach in the chain of trust. Adding a dependency does imply that you trust it, but also
+that you trust all of the indirect dependencies. If there's no trust, you better not add that dependency.</p></section>
         </main>
       </div>
     </div>

Modified: maven/website/content/security.html
==============================================================================
--- maven/website/content/security.html (original)
+++ maven/website/content/security.html Thu Dec  2 20:29:27 2021
@@ -1,18 +1,18 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/markdown/security.md at 2021-12-02
- | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
+ | Generated by Apache Maven Doxia Site Renderer 1.10 from content/markdown/security.md at 2021-12-02
+ | Rendered using Apache Maven Fluido Skin 1.10.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
-    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
+    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.10" />
     <title>Maven &#x2013; Security Vulnerabilities</title>
-    <link rel="stylesheet" href="./css/apache-maven-fluido-1.9.1-SNAPSHOT.min.css" />
+    <link rel="stylesheet" href="./css/apache-maven-fluido-1.10.0.min.css" />
     <link rel="stylesheet" href="./css/site.css" />
     <link rel="stylesheet" href="./css/print.css" media="print" />
-    <script src="./js/apache-maven-fluido-1.9.1-SNAPSHOT.min.js"></script>
+    <script src="./js/apache-maven-fluido-1.10.0.min.js"></script>
     <!-- Google Analytics -->
     <script>
       (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
@@ -140,12 +140,13 @@ KIND, either express or implied.  See th
 specific language governing permissions and limitations
 under the License.
 -->
-Please note that binary patches are not produced for individual
+
+<p>Please note that binary patches are not produced for individual
 vulnerabilities. To obtain the binary fix for a particular vulnerability
 you should upgrade to an Apache Maven version where that vulnerability
-has been fixed.
-
-<p>For more information about reporting vulnerabilities, see the <a class="externalLink" href="https://www.apache.org/security/">Apache Security Team</a> page.</p><section>
+has been fixed.</p>
+<p>For more information about reporting vulnerabilities, see the <a class="externalLink" href="https://www.apache.org/security/">Apache
+Security Team</a> page.</p><section>
 <h3><a name="Maven_Dependency.2C_EAR.2C_Javadoc.2C_WAR_and_Plugin_Plugins"></a>Maven Dependency, EAR, Javadoc, WAR and Plugin Plugins</h3>
 <p>Severity: Low</p>
 <p>Vendor: The Apache Software Foundation</p>
@@ -158,7 +159,15 @@ has been fixed.
 <li>Maven WAR Plugin 2.1-alpha-1 to 3.2.0</li>
 <li>Maven Plugin Plugin 3.0 to 3.5.1</li>
 </ul>
-<p>Description: As part of a broader research, the Snyk Security Research Team discovered an arbitrary file write generic vulnerability, that can be achieved using a specially crafted zip (or bzip2, gzip, tar, xz, war) archive, that holds path traversal filenames. So when the filename gets concatenated to the target extraction directory, if the extraction tool used does not make sufficient checks, the final path ends up outside of the target folder. The affected plugins use plexus-archiver to unpack dependencies to disk and have been identified as potential triggers for exposing the vulnerability if dependencies are compromised.</p>
+<p>Description: As part of a broader research, the Snyk Security Research Team discovered
+an arbitrary file write generic vulnerability, that can be achieved using a
+specially crafted zip (or bzip2, gzip, tar, xz, war) archive, that holds
+path traversal filenames. So when the filename gets concatenated to the
+target extraction directory, if the extraction tool used does not make
+sufficient checks, the final path ends up outside of the target folder.
+The affected plugins use plexus-archiver to unpack dependencies to disk
+and have been identified as potential triggers for exposing the vulnerability
+if dependencies are compromised.</p>
 <p>See <a href="./security-plexus-archiver.html">full description</a> for more details.</p>
 <p>Credit: This issue was identified by the Snyk Security Research Team</p></section><section>
 <h3><a name="CVE-2013-0253_Apache_Maven_3.0.4"></a>CVE-2013-0253 Apache Maven 3.0.4</h3>
@@ -170,9 +179,14 @@ has been fixed.
 <li>Apache Maven 3.0.4</li>
 <li>Apache Maven Wagon 2.1, 2.2, 2.3</li>
 </ul>
-<p>Description: Apache Maven 3.0.4 (with Apache Maven Wagon 2.1) has introduced a non-secure SSL mode by default. This mode disables all SSL certificate checking, including: host name verification , date validity, and certificate chain. Not validating the certificate introduces the possibility of a man-in-the-middle attack.</p>
+<p>Description: Apache Maven 3.0.4 (with Apache Maven Wagon 2.1) has
+introduced a non-secure SSL mode by default. This mode disables all SSL
+certificate checking, including: host name verification , date validity,
+and certificate chain. Not validating the certificate introduces the
+possibility of a man-in-the-middle attack.</p>
 <p><a class="externalLink" href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-0253">CVE-2013-0253</a></p>
-<p>All users are recommended to upgrade to <a href="./download.cgi">Apache Maven 3.0.5</a> and Apache Maven Wagon 2.4.</p>
+<p>All users are recommended to upgrade to <a href="./download.cgi">Apache Maven
+3.0.5</a> and Apache Maven Wagon 2.4.</p>
 <p>Credit: This issue was identified by Graham Leggett</p></section><section>
 <h3><a name="CVE-2012-6153_Apache_Maven_Wagon_::_WebDAV_Provider"></a>CVE-2012-6153 Apache Maven Wagon :: WebDAV Provider</h3>
 <p>Severity: Medium</p>
@@ -182,9 +196,15 @@ has been fixed.
 
 <li>Apache Maven Wagon WebDAV Provider 2.12 and earlier</li>
 </ul>
-<p>Description: http/conn/ssl/AbstractVerifier.java in Apache Commons HttpClient before 4.2.3 does not properly verify that the server hostname matches a domain name in the subject&#x2019;s Common Name (CN) or subjectAltName field of the X.509 certificate, which allows man-in-the-middle attackers to spoof SSL servers via a certificate with a subject that specifies a common name in a field that is not the CN field.</p>
+<p>Description: http/conn/ssl/AbstractVerifier.java in Apache Commons HttpClient
+before 4.2.3 does not properly verify that the server hostname matches a
+domain name in the subject's Common Name (CN) or subjectAltName field of the
+X.509 certificate, which allows man-in-the-middle attackers to spoof SSL
+servers via a certificate with a subject that specifies a common name in a
+field that is not the CN field.</p>
 <p><a class="externalLink" href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-6153">CVE-2012-6153</a></p>
-<p>Users of this provider are recommended to upgrade to <a href="./download.cgi">Apache Maven Wagon :: WebDAV Provider 3.0.0</a></p></section></section>
+<p>Users of this provider are recommended to upgrade to <a href="./download.cgi">Apache Maven Wagon ::
+WebDAV Provider 3.0.0</a></p></section></section>
         </main>
       </div>
     </div>