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 [8/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.2...

Modified: maven/website/content/guides/mini/guide-multiple-modules-4.html
==============================================================================
--- maven/website/content/guides/mini/guide-multiple-modules-4.html (original)
+++ maven/website/content/guides/mini/guide-multiple-modules-4.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/guides/mini/guide-multiple-modules-4.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/guides/mini/guide-multiple-modules-4.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; Guide to Working with Multiple Modules in Maven 4</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(){
@@ -176,10 +176,12 @@ specific language governing permissions
 under the License.
 -->
 
-<p>(If you&#x2019;re working with Maven 3, please refer to the <a href="./guide-multiple-modules.html">Maven 3 edition of this guide</a>)</p>
-<p>As seen in the introduction to the POM, Maven supports project aggregation in addition to project inheritance. This section outlines how Maven processes projects with multiple modules, and how you can work with them more effectively.</p></section><section>
+<p>(If you're working with Maven 3, please refer to the <a href="./guide-multiple-modules.html">Maven 3 edition of this guide</a>)</p>
+<p>As seen in the introduction to the POM, Maven supports project aggregation in addition to project inheritance.
+This section outlines how Maven processes projects with multiple modules, and how you can work with them more effectively.</p></section><section>
 <h2><a name="The_Reactor"></a>The Reactor</h2>
-<p>The mechanism in Maven that handles multi-module projects is referred to as the <i>reactor</i>. This part of the Maven core does the following:</p>
+<p>The mechanism in Maven that handles multi-module projects is referred to as the <i>reactor</i>.
+This part of the Maven core does the following:</p>
 <ul>
 
 <li>Collects all the available modules to build</li>
@@ -188,9 +190,17 @@ under the License.
 <li>Builds the selected modules in order</li>
 </ul><section>
 <h3><a name="Collecting_Modules"></a>Collecting Modules</h3>
-<p>Module collection starts from one aggregator project. That project defines the modules of which it consists using the <code>&lt;modules&gt;</code> element. This is a recursive process, so aggregators can have child modules which are aggregators themselves.</p>
-<p>For this process to work, it does not matter which POM you start with. Maven attempts to find the root of a multi-module project, by traversing upwards in the directory structure until it finds a POM with a <code>.mvn</code> sibling directory. This allows Maven to resolve dependencies on modules from the same multi-module project, regardless of the location of the starting POM. When Maven fails to find the root, it assumes that the starting POM is the root. For consistent behaviour, create a <code>.mvn</code> directory in the root directory of the project.</p>
-<p>There are two ways to point at a starting POM. By default, Maven reads the <code>pom.xml</code> file in the working directory. Using <code>-f</code>, you can point to another POM.</p></section><section>
+<p>Module collection starts from one aggregator project.
+That project defines the modules of which it consists using the <code>&lt;modules&gt;</code> element.
+This is a recursive process, so aggregators can have child modules which are aggregators themselves.</p>
+<p>For this process to work, it does not matter which POM you start with.
+Maven attempts to find the root of a multi-module project, by traversing upwards in the directory structure until it finds a POM with a <code>.mvn</code> sibling directory.
+This allows Maven to resolve dependencies on modules from the same multi-module project, regardless of the location of the starting POM.
+When Maven fails to find the root, it assumes that the starting POM is the root.
+For consistent behaviour, create a <code>.mvn</code> directory in the root directory of the project.</p>
+<p>There are two ways to point at a starting POM.
+By default, Maven reads the <code>pom.xml</code> file in the working directory.
+Using <code>-f</code>, you can point to another POM.</p></section><section>
 <h3><a name="Sorting_Modules"></a>Sorting Modules</h3>
 <p>Because modules within a multi-module build can depend on each other, it is important that the reactor sorts all the projects in a way that guarantees any project is built before it is required.</p>
 <p>The following relationships are honoured when sorting projects:</p>
@@ -204,7 +214,9 @@ under the License.
 </ul>
 <p>Note that only &#x201c;instantiated&#x201d; references are used - <code>dependencyManagement</code> and <code>pluginManagement</code> elements do not cause a change to the reactor sort order.</p></section><section>
 <h3><a name="Selecting_Modules"></a>Selecting Modules</h3>
-<p>By default, Maven builds all modules it has collected. However, you can select a subset of these modules to build using command line flags. These flags come in three categories:</p>
+<p>By default, Maven builds all modules it has collected.
+However, you can select a subset of these modules to build using command line flags.
+These flags come in three categories:</p>
 <ul>
 
 <li>Inclusion and exclusion</li>
@@ -213,18 +225,35 @@ under the License.
 </ul>
 <p>This section ends with how these flags relate to each other.</p><section>
 <h4><a name="Inclusion_and_exclusion"></a>Inclusion and exclusion</h4>
-<p>Using <code>--projects</code> you can specify which modules to build. You can do this by specifying a comma-delimited list of project selectors. A project selector is a string that is composed of the <code>groupId:artifactId</code>, only <code>:artifactId</code> or the relative path to a module.</p>
-<p>A module can be selected (default), or excluded from the build. You exclude a module by prefixing the selector with a <code>!</code> or <code>-</code>. To explicitly select a module, prefix it with a <code>+</code>.</p>
-<p>When a selector does not resolve to an existing module, Maven fails the build. You can prevent this by adding the <code>?</code> prefix. This prefix should always go after the other prefixes.</p></section><section>
+<p>Using <code>--projects</code> you can specify which modules to build.
+You can do this by specifying a comma-delimited list of project selectors.
+A project selector is a string that is composed of the <code>groupId:artifactId</code>, only <code>:artifactId</code> or the relative path to a module.</p>
+<p>A module can be selected (default), or excluded from the build.
+You exclude a module by prefixing the selector with a <code>!</code> or <code>-</code>.
+To explicitly select a module, prefix it with a <code>+</code>.</p>
+<p>When a selector does not resolve to an existing module, Maven fails the build.
+You can prevent this by adding the <code>?</code> prefix.
+This prefix should always go after the other prefixes.</p></section><section>
 <h4><a name="Relationships_between_modules"></a>Relationships between modules</h4>
 <p>Modules inside a project can have two types of relationships: parent/child and dependency/dependent.</p>
-<p>When selecting a parent (aggregator), Maven automatically selects the child modules as well. Similarly, Maven excludes child modules of an excluded parent (aggregator). To prevent this recursive behaviour, combine <code>--projects</code> with <code>--non-recursive</code>.</p>
-<p>Maven knows about the dependencies between modules inside the multi-module project. Using <code>--also-make</code>, Maven includes all dependencies of the selected projects in the build. Similarly, <code>--also-make-dependents</code> lets Maven include all modules which are dependent on the selected projects.</p></section><section>
+<p>When selecting a parent (aggregator), Maven automatically selects the child modules as well.
+Similarly, Maven excludes child modules of an excluded parent (aggregator).
+To prevent this recursive behaviour, combine <code>--projects</code> with <code>--non-recursive</code>.</p>
+<p>Maven knows about the dependencies between modules inside the multi-module project.
+Using <code>--also-make</code>, Maven includes all dependencies of the selected projects in the build.
+Similarly, <code>--also-make-dependents</code> lets Maven include all modules which are dependent on the selected projects.</p></section><section>
 <h4><a name="Dealing_with_failures"></a>Dealing with failures</h4>
-<p>There are several ways to customize how the reactor deals with failures. <code>--fail-at-end</code> fails the build after building as many modules as possible. In this case, modules that do not depend on a failed module, will still be built. <code>--fail-fast</code>, in contrast, fails the build as soon as one module has failed. This is the default behaviour. <code>--fail-never</code> ignores build failures.</p>
-<p>When a build has failed, and you want to start it again, you can skip building the modules that were previously built successfully using <code>--resume</code>. To resume a build from a specific module, you can use <code>--resume-from &lt;selector&gt;</code>.</p></section><section>
+<p>There are several ways to customize how the reactor deals with failures.
+<code>--fail-at-end</code> fails the build after building as many modules as possible.
+In this case, modules that do not depend on a failed module, will still be built.
+<code>--fail-fast</code>, in contrast, fails the build as soon as one module has failed.
+This is the default behaviour.
+<code>--fail-never</code> ignores build failures.</p>
+<p>When a build has failed, and you want to start it again, you can skip building the modules that were previously built successfully using <code>--resume</code>.
+To resume a build from a specific module, you can use <code>--resume-from &lt;selector&gt;</code>.</p></section><section>
 <h4><a name="Bringing_it_together"></a>Bringing it together</h4>
-<p>As said, Maven includes all modules in the reactor, even when the starting POM is not the root of the project. The reactor then selects which modules to build using the following steps:</p>
+<p>As said, Maven includes all modules in the reactor, even when the starting POM is not the root of the project.
+The reactor then selects which modules to build using the following steps:</p>
 <ol style="list-style-type: decimal">
 
 <li>Reduce the full list of modules to the module of the starting POM and its children.</li>
@@ -240,62 +269,62 @@ under the License.
 <thead>
 
 <tr class="a">
-<th> Long </th>
-<th> Short </th>
-<th> Summary </th>
-<th> Details </th></tr>
+<th>Long</th>
+<th>Short</th>
+<th>Summary</th>
+<th>Details</th></tr>
 </thead><tbody>
 
 <tr class="b">
-<td> <code>--file</code> </td>
-<td> <code>-f</code> </td>
-<td> Selects an alternative POM file or directory containing a POM file. </td>
-<td> <a href="#collecting-modules">Collecting Modules</a> </td></tr>
+<td align="left"><code>--file</code></td>
+<td><code>-f</code></td>
+<td>Selects an alternative POM file or directory containing a POM file.</td>
+<td><a href="#collecting-modules">Collecting Modules</a></td></tr>
 <tr class="a">
-<td> <code>--non-recursive</code> </td>
-<td> <code>-N</code> </td>
-<td> Ignores any child modules that may be present in the starting POM. When combined with <code>-pl</code>, ignores the children of selected modules. </td>
-<td> <a href="#collecting-modules">Collecting Modules</a> and <a href="relationships-between-modules">Relationships between modules</a> </td></tr>
+<td align="left"><code>--non-recursive</code></td>
+<td><code>-N</code></td>
+<td>Ignores any child modules that may be present in the starting POM. When combined with <code>-pl</code>, ignores the children of selected modules.</td>
+<td><a href="#collecting-modules">Collecting Modules</a> and <a href="relationships-between-modules">Relationships between modules</a></td></tr>
 <tr class="b">
-<td> <code>--projects</code> </td>
-<td> <code>-pl</code> </td>
-<td> Specifies the modules to include or exclude from a build. </td>
-<td> <a href="#inclusion-and-exclusion">Inclusion and exclusion</a> </td></tr>
+<td align="left"><code>--projects</code></td>
+<td><code>-pl</code></td>
+<td>Specifies the modules to include or exclude from a build.</td>
+<td><a href="#inclusion-and-exclusion">Inclusion and exclusion</a></td></tr>
 <tr class="a">
-<td> <code>--also-make</code> </td>
-<td> <code>-am</code> </td>
-<td> Builds the specified modules, and any of their dependencies in the reactor. </td>
-<td> <a href="#relationships-between-modules">Relationships between modules</a> </td></tr>
+<td align="left"><code>--also-make</code></td>
+<td><code>-am</code></td>
+<td>Builds the specified modules, and any of their dependencies in the reactor.</td>
+<td><a href="#relationships-between-modules">Relationships between modules</a></td></tr>
 <tr class="b">
-<td> <code>--also-make-dependents</code> </td>
-<td> <code>-amd</code> </td>
-<td> Builds the specified modules, and any that depend on them. </td>
-<td> <a href="#relationships-between-modules">Relationships between modules</a> </td></tr>
+<td align="left"><code>--also-make-dependents</code></td>
+<td><code>-amd</code></td>
+<td>Builds the specified modules, and any that depend on them.</td>
+<td><a href="#relationships-between-modules">Relationships between modules</a></td></tr>
 <tr class="a">
-<td> <code>--resume-from</code> </td>
-<td> <code>-rf</code> </td>
-<td> Resumes a reactor from the specified project (e.g. when it fails in the middle). </td>
-<td> <a href="#dealing-with-failures">Dealing with failures</a> </td></tr>
+<td align="left"><code>--resume-from</code></td>
+<td><code>-rf</code></td>
+<td>Resumes a reactor from the specified project (e.g. when it fails in the middle).</td>
+<td><a href="#dealing-with-failures">Dealing with failures</a></td></tr>
 <tr class="b">
-<td> <code>--resume</code> </td>
-<td> <code>-r</code> </td>
-<td> Resumes a reactor from the module where the previous build failed. </td>
-<td> <a href="#dealing-with-failures">Dealing with failures</a> </td></tr>
+<td align="left"><code>--resume</code></td>
+<td><code>-r</code></td>
+<td>Resumes a reactor from the module where the previous build failed.</td>
+<td><a href="#dealing-with-failures">Dealing with failures</a></td></tr>
 <tr class="a">
-<td> <code>--fail-fast</code> </td>
-<td> <code>-ff</code> </td>
-<td> Stops the overall build immediately whenever a module build fails. This is the default behavior. </td>
-<td> <a href="#dealing-with-failures">Dealing with failures</a> </td></tr>
+<td align="left"><code>--fail-fast</code></td>
+<td><code>-ff</code></td>
+<td>Stops the overall build immediately whenever a module build fails. This is the default behavior.</td>
+<td><a href="#dealing-with-failures">Dealing with failures</a></td></tr>
 <tr class="b">
-<td> <code>--fail-at-end</code> </td>
-<td> <code>-fae</code> </td>
-<td> Continues the rest of the reactor if a particular module build fails and report all failed modules at the end instead. </td>
-<td> <a href="#dealing-with-failures">Dealing with failures</a> </td></tr>
+<td align="left"><code>--fail-at-end</code></td>
+<td><code>-fae</code></td>
+<td>Continues the rest of the reactor if a particular module build fails and report all failed modules at the end instead.</td>
+<td><a href="#dealing-with-failures">Dealing with failures</a></td></tr>
 <tr class="a">
-<td> <code>--fail-never</code> </td>
-<td> <code>-fn</code> </td>
-<td> Never fails the build, regardless of the project result. </td>
-<td> <a href="#dealing-with-failures">Dealing with failures</a> </td></tr>
+<td align="left"><code>--fail-never</code></td>
+<td><code>-fn</code></td>
+<td>Never fails the build, regardless of the project result.</td>
+<td><a href="#dealing-with-failures">Dealing with failures</a></td></tr>
 </tbody>
 </table></section><section>
 <h2><a name="Differences_between_Maven_3_and_4"></a>Differences between Maven 3 and 4</h2>
@@ -305,42 +334,42 @@ under the License.
 <thead>
 
 <tr class="a">
-<th> Scenario </th>
-<th> Outcome (in order) </th>
-<th> Maven 3 </th>
-<th> Maven 4 </th></tr>
+<th>Scenario</th>
+<th>Outcome (in order)</th>
+<th>Maven 3</th>
+<th>Maven 4</th></tr>
 </thead><tbody>
 
 <tr class="b">
-<td> Build an aggregator and its children </td>
-<td> module-c, module-c-1, module-c-2 </td>
-<td> <code>mvn compile -pl module-c, module-c-1, module-c-2</code> </td>
-<td> <code>mvn compile -pl module-c</code> </td></tr>
+<td align="left">Build an aggregator and its children</td>
+<td>module-c, module-c-1, module-c-2</td>
+<td><code>mvn compile -pl module-c, module-c-1, module-c-2</code></td>
+<td><code>mvn compile -pl module-c</code></td></tr>
 <tr class="a">
-<td> Build an aggregator and ignore its children </td>
-<td> module-c, module-c-1, module-c-2 </td>
-<td> <code>mvn compile -pl module-c</code> </td>
-<td> <code>mvn compile -pl module-c -N</code> </td></tr>
+<td align="left">Build an aggregator and ignore its children</td>
+<td>module-c, module-c-1, module-c-2</td>
+<td><code>mvn compile -pl module-c</code></td>
+<td><code>mvn compile -pl module-c -N</code></td></tr>
 <tr class="b">
-<td> Also make dependencies outside of current scope </td>
-<td> parent, module-a, module-b, module-c, module-c-2 </td>
-<td> N/A </td>
-<td> <code>cd module-c/module-c-2 &amp;&amp; mvn compile -am</code> </td></tr>
+<td align="left">Also make dependencies outside of current scope</td>
+<td>parent, module-a, module-b, module-c, module-c-2</td>
+<td>N/A</td>
+<td><code>cd module-c/module-c-2 &amp;&amp; mvn compile -am</code></td></tr>
 <tr class="a">
-<td> Also make dependents outside of current scope </td>
-<td> module-a, module-b, module-c-2 </td>
-<td> N/A </td>
-<td> <code>cd module-a &amp;&amp; mvn compile -amd</code> </td></tr>
+<td align="left">Also make dependents outside of current scope</td>
+<td>module-a, module-b, module-c-2</td>
+<td>N/A</td>
+<td><code>cd module-a &amp;&amp; mvn compile -amd</code></td></tr>
 <tr class="b">
-<td> Resuming from a module and build all dependencies </td>
-<td> parent, module-a, module-b, module-c, module-c-2 </td>
-<td> N/A </td>
-<td> <code>mvn compile -rf :module-c-2 -am</code> or <code>mvn compile -r -am</code> </td></tr>
+<td align="left">Resuming from a module and build all dependencies</td>
+<td>parent, module-a, module-b, module-c, module-c-2</td>
+<td>N/A</td>
+<td><code>mvn compile -rf :module-c-2 -am</code> or <code>mvn compile -r -am</code></td></tr>
 <tr class="a">
-<td> Run specific goal on one submodule with dependencies from project </td>
-<td> module-c-2 </td>
-<td> <code>mvn install &amp;&amp; mvn jetty:run -f module-c/module-c-2</code> </td>
-<td> <code>mvn compile &amp;&amp; mvn jetty:run -f module-c/module-c-2</code> </td></tr>
+<td align="left">Run specific goal on one submodule with dependencies from project</td>
+<td>module-c-2</td>
+<td><code>mvn install &amp;&amp; mvn jetty:run -f module-c/module-c-2</code></td>
+<td><code>mvn compile &amp;&amp; mvn jetty:run -f module-c/module-c-2</code></td></tr>
 </tbody>
 </table></section><section>
 <h2><a name="More_information"></a>More information</h2>

Modified: maven/website/content/guides/mini/guide-multiple-modules.html
==============================================================================
--- maven/website/content/guides/mini/guide-multiple-modules.html (original)
+++ maven/website/content/guides/mini/guide-multiple-modules.html Thu Dec  2 20:29:27 2021
@@ -1,21 +1,21 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-multiple-modules.apt 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/apt/guides/mini/guide-multiple-modules.apt 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="Brett Porter
 Karl Heinz Marbaise" />
     <meta name="date" content="2015-03-13" />
     <title>Maven &#x2013; Guide to Working with Multiple Modules</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(){

Modified: maven/website/content/guides/mini/guide-multiple-repositories.html
==============================================================================
--- maven/website/content/guides/mini/guide-multiple-repositories.html (original)
+++ maven/website/content/guides/mini/guide-multiple-repositories.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-multiple-repositories.apt 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/apt/guides/mini/guide-multiple-repositories.apt 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="Jason van Zyl" />
     <meta name="date" content="2005-10-12" />
     <title>Maven &#x2013; Guide to using Multiple Repositories</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(){

Modified: maven/website/content/guides/mini/guide-naming-conventions.html
==============================================================================
--- maven/website/content/guides/mini/guide-naming-conventions.html (original)
+++ maven/website/content/guides/mini/guide-naming-conventions.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-naming-conventions.apt 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/apt/guides/mini/guide-naming-conventions.apt 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="Carlos Sanchez" />
     <meta name="date" content="2005-11-01" />
     <title>Maven &#x2013; Guide to Naming Conventions</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(){

Modified: maven/website/content/guides/mini/guide-new-committers.html
==============================================================================
--- maven/website/content/guides/mini/guide-new-committers.html (original)
+++ maven/website/content/guides/mini/guide-new-committers.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-new-committers.apt 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/apt/guides/mini/guide-new-committers.apt 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="Jason van Zyl" />
     <meta name="date" content="2005-11-20" />
     <title>Maven &#x2013; Guide for new committers</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(){

Modified: maven/website/content/guides/mini/guide-proxies.html
==============================================================================
--- maven/website/content/guides/mini/guide-proxies.html (original)
+++ maven/website/content/guides/mini/guide-proxies.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-proxies.apt 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/apt/guides/mini/guide-proxies.apt 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="Jason van Zyl" />
     <meta name="date" content="2005-10-12" />
     <title>Maven &#x2013; Guide to using proxies</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(){

Modified: maven/website/content/guides/mini/guide-releasing.html
==============================================================================
--- maven/website/content/guides/mini/guide-releasing.html (original)
+++ maven/website/content/guides/mini/guide-releasing.html Thu Dec  2 20:29:27 2021
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-releasing.apt 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/apt/guides/mini/guide-releasing.apt 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="Jason van Zyl
 Trent Rosenbaum
 Vincent Massol
@@ -15,10 +15,10 @@ Karl Heinz Marbaise" />
     <meta name="date" content="2006-10-07
 2015-07-31" />
     <title>Maven &#x2013; Guide to using the release plugin</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(){

Modified: maven/website/content/guides/mini/guide-relocation.html
==============================================================================
--- maven/website/content/guides/mini/guide-relocation.html (original)
+++ maven/website/content/guides/mini/guide-relocation.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-relocation.apt 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/apt/guides/mini/guide-relocation.apt 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="Dennis Lundberg" />
     <meta name="date" content="2006-07-08" />
     <title>Maven &#x2013; Guide to relocation</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(){

Modified: maven/website/content/guides/mini/guide-repository-ssl.html
==============================================================================
--- maven/website/content/guides/mini/guide-repository-ssl.html (original)
+++ maven/website/content/guides/mini/guide-repository-ssl.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-repository-ssl.apt 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/apt/guides/mini/guide-repository-ssl.apt 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="Arnaud Bailly" />
     <meta name="date" content="2005-11-11" />
     <title>Maven &#x2013; Remote repository access through authenticated HTTPS</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(){

Modified: maven/website/content/guides/mini/guide-reproducible-builds.html
==============================================================================
--- maven/website/content/guides/mini/guide-reproducible-builds.html (original)
+++ maven/website/content/guides/mini/guide-reproducible-builds.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-reproducible-builds.apt 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/apt/guides/mini/guide-reproducible-builds.apt 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="Hervé Boutemy" />
     <meta name="date" content="2019-11-03" />
     <title>Maven &#x2013; Guide to Configuring for Reproducible Builds</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(){

Modified: maven/website/content/guides/mini/guide-site.html
==============================================================================
--- maven/website/content/guides/mini/guide-site.html (original)
+++ maven/website/content/guides/mini/guide-site.html Thu Dec  2 20:29:27 2021
@@ -1,21 +1,21 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-site.apt 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/apt/guides/mini/guide-site.apt 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="Brett Porter
 Jason van Zyl" />
     <meta name="date" content="2015-07-18" />
     <title>Maven &#x2013; Guide to creating a site</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(){

Modified: maven/website/content/guides/mini/guide-snippet-macro.html
==============================================================================
--- maven/website/content/guides/mini/guide-snippet-macro.html (original)
+++ maven/website/content/guides/mini/guide-snippet-macro.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-snippet-macro.apt 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/apt/guides/mini/guide-snippet-macro.apt 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="Wendy Smoak" />
     <meta name="date" content="2014-08-20" />
     <title>Maven &#x2013; Guide to the Snippet Macro</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(){

Modified: maven/website/content/guides/mini/guide-using-ant.html
==============================================================================
--- maven/website/content/guides/mini/guide-using-ant.html (original)
+++ maven/website/content/guides/mini/guide-using-ant.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-using-ant.apt 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/apt/guides/mini/guide-using-ant.apt 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="Jason van Zyl" />
     <meta name="date" content="2005-10-12" />
     <title>Maven &#x2013; Guide to using Ant with 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(){

Modified: maven/website/content/guides/mini/guide-using-extensions.html
==============================================================================
--- maven/website/content/guides/mini/guide-using-extensions.html (original)
+++ maven/website/content/guides/mini/guide-using-extensions.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-using-extensions.apt 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/apt/guides/mini/guide-using-extensions.apt 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="Jason van Zyl" />
     <meta name="date" content="2005-10-12" />
     <title>Maven &#x2013; Guide to using Extensions</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(){

Modified: maven/website/content/guides/mini/guide-using-modello.html
==============================================================================
--- maven/website/content/guides/mini/guide-using-modello.html (original)
+++ maven/website/content/guides/mini/guide-using-modello.html Thu Dec  2 20:29:27 2021
@@ -1,21 +1,21 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-using-modello.apt 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/apt/guides/mini/guide-using-modello.apt 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="Jason van Zyl
 Hervé Boutemy" />
     <meta name="date" content="2009-03-01" />
     <title>Maven &#x2013; Guide to using Modello</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(){

Modified: maven/website/content/guides/mini/guide-using-one-source-directory.html
==============================================================================
--- maven/website/content/guides/mini/guide-using-one-source-directory.html (original)
+++ maven/website/content/guides/mini/guide-using-one-source-directory.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-using-one-source-directory.apt 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/apt/guides/mini/guide-using-one-source-directory.apt 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="Brett Porter" />
     <meta name="date" content="2005-12-05" />
     <title>Maven &#x2013; Guide to Using Maven when You Can't Use the Conventions</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(){

Modified: maven/website/content/guides/mini/guide-using-toolchains.html
==============================================================================
--- maven/website/content/guides/mini/guide-using-toolchains.html (original)
+++ maven/website/content/guides/mini/guide-using-toolchains.html Thu Dec  2 20:29:27 2021
@@ -1,22 +1,22 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-using-toolchains.apt 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/apt/guides/mini/guide-using-toolchains.apt 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="Maria Odea Ching
 Dennis Lundberg
 Karl Heinz Marbaise" />
     <meta name="date" content="2016-03-08" />
     <title>Maven &#x2013; Guide to Using Toolchains</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(){

Modified: maven/website/content/guides/mini/guide-wagon-providers.html
==============================================================================
--- maven/website/content/guides/mini/guide-wagon-providers.html (original)
+++ maven/website/content/guides/mini/guide-wagon-providers.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/guide-wagon-providers.apt 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/apt/guides/mini/guide-wagon-providers.apt 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="John Casey" />
     <meta name="date" content="2009-07-13" />
     <title>Maven &#x2013; Guide to Selecting Alternative Wagon Providers</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(){

Modified: maven/website/content/guides/mini/index.html
==============================================================================
--- maven/website/content/guides/mini/index.html (original)
+++ maven/website/content/guides/mini/index.html Thu Dec  2 20:29:27 2021
@@ -1,20 +1,20 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/mini/index.apt.vm 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/apt/guides/mini/index.apt.vm 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="Jason van Zyl" />
     <meta name="date" content="2005-10-12" />
     <title>Maven &#x2013; Maven Mini Guides</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(){

Modified: maven/website/content/guides/plugin/guide-java-plugin-development.html
==============================================================================
--- maven/website/content/guides/plugin/guide-java-plugin-development.html (original)
+++ maven/website/content/guides/plugin/guide-java-plugin-development.html Thu Dec  2 20:29:27 2021
@@ -1,22 +1,22 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/plugin/guide-java-plugin-development.apt 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/apt/guides/plugin/guide-java-plugin-development.apt 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="Bob Allison
 Vincent Siveton
 Olivier Lamy" />
     <meta name="date" content="2013-01-02" />
     <title>Maven &#x2013; Guide to Developing Java Plugins</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(){

Modified: maven/website/content/guides/plugin/guide-java-report-plugin-development.html
==============================================================================
--- maven/website/content/guides/plugin/guide-java-report-plugin-development.html (original)
+++ maven/website/content/guides/plugin/guide-java-report-plugin-development.html Thu Dec  2 20:29:27 2021
@@ -1,21 +1,21 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/apt/guides/plugin/guide-java-report-plugin-development.apt 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/apt/guides/plugin/guide-java-report-plugin-development.apt 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="Hervé Boutemy
 Bertrand Martin" />
     <meta name="date" content="2018-01-21" />
     <title>Maven &#x2013; Guide to Developing Java Report Plugins</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(){

Modified: maven/website/content/ide.html
==============================================================================
--- maven/website/content/ide.html (original)
+++ maven/website/content/ide.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/ide.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/ide.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; Apache Maven IDE Integration</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,18 +146,20 @@ KIND, either express or implied.  See th
 specific language governing permissions and limitations
 under the License.
 -->
-All popular development environments for the Java platform support Apache Maven.
-<section>
+
+<p>All popular development environments for the Java platform support Apache Maven.</p><section>
 <h2><a name="Apache_NetBeans_IDE"></a>Apache NetBeans IDE</h2>
-<p>Apache NetBeans has included full Maven support since version 6.7. You can open any Maven project in the IDE and start coding immediately.</p>
+<p>Apache NetBeans has included full Maven support since version 6.7.
+You can open any Maven project in the IDE and start coding immediately.</p>
 <p>For more information see the <a class="externalLink" href="http://wiki.netbeans.org/Maven">NetBeans.org wiki page</a>.</p></section><section>
 <h2><a name="Eclipse_IDE_-_M2Eclipse"></a>Eclipse IDE - M2Eclipse</h2>
-<p><a class="externalLink" href="https://www.eclipse.org/m2e/">M2Eclipse</a> is the official Eclipse project for Maven integration for the Eclipse IDE.</p>
+<p><a class="externalLink" href="https://www.eclipse.org/m2e/">M2Eclipse</a> is
+the official Eclipse project for Maven integration for the Eclipse IDE.</p>
 <p>Features include:</p>
 <ul>
 
 <li>Launching Maven builds from within Eclipse</li>
-<li>Dependency management for Eclipse build path based on Maven&#x2019;s pom.xml</li>
+<li>Dependency management for Eclipse build path based on Maven's pom.xml</li>
 <li>Resolving Maven dependencies from the Eclipse workspace without installing to local Maven repository</li>
 <li>Automatic downloading of the required dependencies and sources from the remote Maven repositories</li>
 <li>Wizards for creating new Maven projects, pom.xml and to enable Maven support on existing projects</li>
@@ -165,7 +167,9 @@ All popular development environments for
 <li>Quick fixes in the Java editor for looking up required dependencies/jars by the class or package name</li>
 <li>Integration with other Eclipse tools, such as WTP, AJDT, Mylyn, Subclipse and others.</li>
 </ul>
-<p>M2E dynamically integrates with your Maven projects with Eclipse while you make changes in the IDE. As you change dependencies, or configurations of Maven plugins in your POMs M2E, will synchronize the Eclipse workspace with those changes.</p></section><section>
+<p>M2E dynamically integrates with your Maven projects with Eclipse while you make changes in the IDE. As
+you change dependencies, or configurations of Maven plugins in your POMs M2E, will synchronize the
+Eclipse workspace with those changes.</p></section><section>
 <h2><a name="JetBrains_IntelliJ_IDEA"></a>JetBrains IntelliJ IDEA</h2>
 <p>IntelliJ IDEA has a <a class="externalLink" href="https://www.jetbrains.com/idea/help/maven.html">feature-rich integration for Maven</a>.</p></section>
         </main>

Modified: maven/website/content/index.html
==============================================================================
--- maven/website/content/index.html (original)
+++ maven/website/content/index.html Thu Dec  2 20:29:27 2021
@@ -1,21 +1,21 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from content/xdoc/index.xml.vm 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/index.xml.vm 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="Brett Porter" />
     <meta name="author" content="Jason van Zyl" />
     <meta name="author" content="Olivier Lamy" />
     <title>Maven &#x2013; Welcome to 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(){
@@ -174,7 +174,7 @@
       
 <tr class="b">
         
-<td>Information for those needing to build a project that uses Maven</td>
+<td align="left">Information for those needing to build a project that uses Maven</td>
         
 <td>
             Lists of plugins and extensions to help with your builds.
@@ -192,7 +192,7 @@
       
 <tr class="b">
         
-<td>
+<td align="left">
             Information for developers writing Maven plugins.
         </td>
         
@@ -213,7 +213,7 @@
       
 <tr class="b">
         
-<td>
+<td align="left">
             Information if you'd like to get involved. Maven is an open source community and welcomes contributions.
         </td>
         

Modified: maven/website/content/install.html
==============================================================================
--- maven/website/content/install.html (original)
+++ maven/website/content/install.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/install.md.vm 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/install.md.vm 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; Installing 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,9 +146,9 @@ KIND, either express or implied.  See th
 specific language governing permissions and limitations
 under the License.
 -->
-The installation of Apache Maven is a simple process of extracting the archive 
-and adding the `bin` folder with the `mvn` command to the `PATH`.
 
+<p>The installation of Apache Maven is a simple process of extracting the archive
+and adding the <code>bin</code> folder with the <code>mvn</code> command to the <code>PATH</code>.</p>
 <p>Detailed steps are:</p>
 <ul>
 
@@ -162,22 +162,19 @@ and adding the `bin` folder with the `mv
 </li>
 </ul>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">unzip apache-maven-3.8.4-bin.zip
-</pre></div></div>
-
+<div class="source"><pre class="prettyprint linenums"><code class="language-cmd">unzip apache-maven-3.8.4-bin.zip
+</code></pre></div>
 <p>or</p>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">tar xzvf apache-maven-3.8.4-bin.tar.gz
-</pre></div></div>
-
+<div class="source"><pre class="prettyprint linenums"><code class="language-sh">tar xzvf apache-maven-3.8.4-bin.tar.gz
+</code></pre></div>
 <p>Alternatively use your preferred archive extraction tool.</p>
 <ul>
 
 <li>
 
-<p>Add the <code>bin</code> directory of the created directory <code>apache-maven-3.8.4</code> to the <code>PATH</code> environment variable</p>
+<p>Add the <code>bin</code> directory of the created directory <code>apache-maven-3.8.4</code> to
+the <code>PATH</code> environment variable</p>
 </li>
 <li>
 
@@ -185,31 +182,31 @@ and adding the `bin` folder with the `mv
 </li>
 </ul>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">Apache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537)
+<div class="source"><pre class="prettyprint linenums"><code>Apache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537)
 Maven home: /opt/apache-maven-3.8.4
 Java version: 1.8.0_45, vendor: Oracle Corporation
 Java home: /Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home/jre
 Default locale: en_US, platform encoding: UTF-8
 OS name: &quot;mac os x&quot;, version: &quot;10.8.5&quot;, arch: &quot;x86_64&quot;, family: &quot;mac&quot;
-</pre></div></div>
-<section>
+</code></pre></div><section>
 <h2><a name="Windows_Tips"></a>Windows Tips</h2>
 <ul>
 
 <li>Check environment variable value e.g.</li>
 </ul>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">echo %JAVA_HOME% 
+<div class="source"><pre class="prettyprint linenums"><code class="language-cmd">echo %JAVA_HOME% 
 C:\Program Files\Java\jdk1.7.0_51
-</pre></div></div>
-
+</code></pre></div>
 <ul>
 
 <li>
 
-<p>Adding to <code>PATH</code>:  Add the unpacked distribution&#x2019;s bin directory to your user PATH environment variable by opening up the system properties (WinKey + Pause), selecting the &#x201c;Advanced&#x201d; tab, and the &#x201c;Environment Variables&#x201d; button, then adding or selecting the <i>PATH</i> variable in the user variables with the value <code>C:\Program Files\apache-maven-3.8.4\bin</code>. The same dialog can be used to set <code>JAVA_HOME</code> to the location of your JDK, e.g. <code>C:\Program Files\Java\jdk1.7.0_51</code></p>
+<p>Adding to <code>PATH</code>:  Add the unpacked distribution's bin directory to your user PATH environment variable
+by opening up the system properties (WinKey + Pause), selecting the &#x201c;Advanced&#x201d; tab, and
+the &#x201c;Environment Variables&#x201d; button, then adding or selecting the <i>PATH</i>
+variable in the user variables with the value <code>C:\Program Files\apache-maven-3.8.4\bin</code>.
+The same dialog can be used to set <code>JAVA_HOME</code> to the location of your JDK, e.g. <code>C:\Program Files\Java\jdk1.7.0_51</code></p>
 </li>
 <li>
 
@@ -222,19 +219,16 @@ C:\Program Files\Java\jdk1.7.0_51
 <li>Check environment variable value</li>
 </ul>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">echo $JAVA_HOME
+<div class="source"><pre class="prettyprint linenums"><code class="language-sh">echo $JAVA_HOME
 /Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home
-</pre></div></div>
-
+</code></pre></div>
 <ul>
 
 <li>Adding to <code>PATH</code></li>
 </ul>
 
-<div class="source">
-<div class="source"><pre class="prettyprint linenums">export PATH=/opt/apache-maven-3.8.4/bin:$PATH
-</pre></div></div></section>
+<div class="source"><pre class="prettyprint linenums"><code class="language-sh">export PATH=/opt/apache-maven-3.8.4/bin:$PATH
+</code></pre></div></section>
         </main>
       </div>
     </div>

Modified: maven/website/content/issue-management.html
==============================================================================
--- maven/website/content/issue-management.html (original)
+++ maven/website/content/issue-management.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/issue-management.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/issue-management.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; Overview</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(){
@@ -151,8 +151,10 @@ under the License.
 
 <p>Maven projects use <a class="externalLink" href="https://www.atlassian.com/software/jira">Jira</a> as issue tracking and project management application.</p></section><section>
 <h2><a name="Issue_Management"></a>Issue Management</h2>
-<p>Maven is composed of nearly <a href="/scm.html#Maven_Sources_Overview">100 parts</a>, each one having its own Jira project or component: <b>see the <a class="externalLink" href="https://cwiki.apache.org/confluence/display/MAVEN/Maven+JIRA+issues+overview">Maven Jira issues overview</a> to get a summary of open issues</b>.</p>
-<p>Issues, bugs, and feature requests should be submitted to the following issue management systems depending on which component is involved:</p>
+<p>Maven is composed of nearly <a href="/scm.html#Maven_Sources_Overview">100 parts</a>, each one having its own Jira project or component:
+<b>see the <a class="externalLink" href="https://cwiki.apache.org/confluence/display/MAVEN/Maven+JIRA+issues+overview">Maven Jira issues overview</a> to get a summary of open issues</b>.</p>
+<p>Issues, bugs, and feature requests should be submitted to the following
+issue management systems depending on which component is involved:</p>
 <ul>
 
 <li>