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 2020/07/12 18:00:07 UTC

svn commit: r1879808 [3/5] - in /maven/website/content: ./ apache-resource-bundles/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ developers/website/ docs/ docs/2.0.1/ docs/2.0.10/ docs/2.0.11/ docs/2.0.2/ docs...

Modified: maven/website/content/guides/getting-started/index.html
==============================================================================
--- maven/website/content/guides/getting-started/index.html (original)
+++ maven/website/content/guides/getting-started/index.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/index.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/index.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Vincent Siveton" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Maven Getting Started Guide <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/getting-started/index.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>
@@ -185,22 +185,27 @@ Vincent Siveton" />
 <h3><a name="How_do_I_make_my_first_Maven_project.3F"></a><a name="How_do_I_make_my_first_Maven_project">How do I make my first Maven project?</a></h3>
 <p>We are going to jump headlong into creating your first Maven project! To create our first Maven project we are going to use Maven's archetype mechanism. An archetype is defined as <i>an original pattern or model from which all other things of the same kind are made</i>. In Maven, an archetype is a template of a project which is combined with some user input to produce a working Maven project that has been tailored to the user's requirements. We are going to show you how the archetype mechanism works now, but if you would like to know more about archetypes please refer to our <a href="../introduction/introduction-to-archetypes.html">Introduction to Archetypes</a>.</p>
 <p>On to creating your first project! In order to create the simplest of Maven projects, execute the following from the command line:</p>
-<div class="source"><pre class="prettyprint linenums">mvn -B archetype:generate \
-  -DarchetypeGroupId=org.apache.maven.archetypes \
-  -DgroupId=com.mycompany.app \
-  -DartifactId=my-app</pre></div>
+<div>
+<pre>mvn -B archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.4</pre></div>
 <p>Once you have executed this command, you will notice a few things have happened. First, you will notice that a directory named <code>my-app</code> has been created for the new project, and this directory contains a file named <code>pom.xml</code> that should look like this:</p>
-<div class="source"><pre class="prettyprint linenums">&lt;project xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot;
-  xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
-  xsi:schemaLocation=&quot;http://maven.apache.org/POM/4.0.0
-                      http://maven.apache.org/xsd/maven-4.0.0.xsd&quot;&gt;
+<div class="source"><pre class="prettyprint linenums">&lt;project xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
+  xsi:schemaLocation=&quot;http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd&quot;&gt;
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+
   &lt;groupId&gt;com.mycompany.app&lt;/groupId&gt;
   &lt;artifactId&gt;my-app&lt;/artifactId&gt;
-  &lt;packaging&gt;jar&lt;/packaging&gt;
   &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt;
-  &lt;name&gt;Maven Quick Start Archetype&lt;/name&gt;
-  &lt;url&gt;http://maven.apache.org&lt;/url&gt;
+
+  &lt;name&gt;my-app&lt;/name&gt;
+  &lt;!-- FIXME change it to the project's website --&gt;
+  &lt;url&gt;http://www.example.com&lt;/url&gt;
+
+  &lt;properties&gt;
+    &lt;project.build.sourceEncoding&gt;UTF-8&lt;/project.build.sourceEncoding&gt;
+    &lt;maven.compiler.source&gt;1.7&lt;/maven.compiler.source&gt;
+    &lt;maven.compiler.target&gt;1.7&lt;/maven.compiler.target&gt;
+  &lt;/properties&gt;
+
   &lt;dependencies&gt;
     &lt;dependency&gt;
       &lt;groupId&gt;junit&lt;/groupId&gt;
@@ -209,6 +214,12 @@ Vincent Siveton" />
       &lt;scope&gt;test&lt;/scope&gt;
     &lt;/dependency&gt;
   &lt;/dependencies&gt;
+
+  &lt;build&gt;
+    &lt;pluginManagement&gt;&lt;!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --&gt;
+       ... lots of helpful plugins
+    &lt;/pluginManagement&gt;
+  &lt;/build&gt;
 &lt;/project&gt;</pre></div>
 <p><code>pom.xml</code> contains the Project Object Model (POM) for this project. The POM is the basic unit of work in Maven. This is important to remember because Maven is inherently project-centric in that everything revolves around the notion of a project. In short, the POM contains every important piece of information about your project and is essentially one-stop-shopping for finding anything related to your project. Understanding the POM is important and new users are encouraged to refer to the <a href="../introduction/introduction-to-the-pom.html">Introduction to the POM</a>.</p>
 <p>This is a very simple POM but still displays the key elements every POM contains, so let's walk through each of them to familiarize you with the POM essentials:</p>
@@ -217,11 +228,12 @@ Vincent Siveton" />
 <li><b>modelVersion</b> This element indicates what version of the object model this POM is using. The version of the model itself changes very infrequently but it is mandatory in order to ensure stability of use if and when the Maven developers deem it necessary to change the model.</li>
 <li><b>groupId</b> This element indicates the unique identifier of the organization or group that created the project. The groupId is one of the key identifiers of a project and is typically based on the fully qualified domain name of your organization. For example <code>org.apache.maven.plugins</code> is the designated groupId for all Maven plugins.</li>
 <li><b>artifactId</b> This element indicates the unique base name of the primary artifact being generated by this project. The primary artifact for a project is typically a JAR file. Secondary artifacts like source bundles also use the artifactId as part of their final name. A typical artifact produced by Maven would have the form &lt;artifactId&gt;-&lt;version&gt;.&lt;extension&gt; (for example, <code>myapp-1.0.jar</code>).</li>
-<li><b>packaging</b> This element indicates the package type to be used by this artifact (e.g. JAR, WAR, EAR, etc.). This not only means if the artifact produced is JAR, WAR, or EAR but can also indicate a specific lifecycle to use as part of the build process. (The lifecycle is a topic we will deal with further on in the guide. For now, just keep in mind that the indicated packaging of a project can play a part in customizing the build lifecycle.) The default value for the <code>packaging</code> element is JAR so you do not have to specify this for most projects.</li>
 <li><b>version</b> This element indicates the version of the artifact generated by the project. Maven goes a long way to help you with version management and you will often see the <code>SNAPSHOT</code> designator in a version, which indicates that a project is in a state of development. We will discuss the use of <a href="./index.html#What_is_a_SNAPSHOT_version">snapshots</a> and how they work further on in this guide.</li>
 <li><b>name</b> This element indicates the display name used for the project. This is often used in Maven's generated documentation.</li>
 <li><b>url</b> This element indicates where the project's site can be found. This is often used in Maven's generated documentation.</li>
-<li><b>description</b> This element provides a basic description of your project. This is often used in Maven's generated documentation.</li></ul>
+<li><b>properties</b> This element contains value placeholders accessible anywhere within a POM.</li>
+<li><b>dependencies</b> This element's children list <a href="/pom.html#dependencies">dependencies</a>. The cornerstone of the POM.</li>
+<li><b>build</b> This element handles things like declaring your project's directory structure and managing plugins.</li></ul>
 <p>For a complete reference of what elements are available for use in the POM please refer to our <a href="/ref/current/maven-model/maven.html">POM Reference</a>. Now let's get back to the project at hand.</p>
 <p>After the archetype generation of your first project you will also notice that the following directory structure has been created:</p>
 <div>
@@ -248,27 +260,25 @@ Vincent Siveton" />
 <div class="source"><pre class="prettyprint linenums">mvn compile</pre></div>
 <p>Upon executing this command you should see output like the following:</p>
 <div>
-<pre>[INFO] ----------------------------------------------------------------------------
-[INFO] Building Maven Quick Start Archetype
-[INFO]    task-segment: [compile]
-[INFO] ----------------------------------------------------------------------------
-[INFO] artifact org.apache.maven.plugins:maven-resources-plugin: \
-  checking for updates from central
-...
-[INFO] artifact org.apache.maven.plugins:maven-compiler-plugin: \
-  checking for updates from central
-...
-[INFO] [resources:resources]
-...
-[INFO] [compiler:compile]
-Compiling 1 source file to &lt;dir&gt;/my-app/target/classes
-[INFO] ----------------------------------------------------------------------------
-[INFO] BUILD SUCCESSFUL
-[INFO] ----------------------------------------------------------------------------
-[INFO] Total time: 3 minutes 54 seconds
-[INFO] Finished at: Fri Sep 23 15:48:34 GMT-05:00 2005
-[INFO] Final Memory: 2M/6M
-[INFO] ----------------------------------------------------------------------------</pre></div>
+<pre>[INFO] Scanning for projects...
+[INFO] 
+[INFO] ----------------------&lt; com.mycompany.app:my-app &gt;----------------------
+[INFO] Building my-app 1.0-SNAPSHOT
+[INFO] --------------------------------[ jar ]---------------------------------
+[INFO] 
+[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ my-app ---
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[INFO] skip non existing resourceDirectory &lt;dir&gt;/my-app/src/main/resources
+[INFO] 
+[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ my-app ---
+[INFO] Changes detected - recompiling the module!
+[INFO] Compiling 1 source file to &lt;dir&gt;/my-app/target/classes
+[INFO] ------------------------------------------------------------------------
+[INFO] BUILD SUCCESS
+[INFO] ------------------------------------------------------------------------
+[INFO] Total time:  0.899 s
+[INFO] Finished at: 2020-07-12T11:31:54+01:00
+[INFO] ------------------------------------------------------------------------</pre></div>
 <p>The first time you execute this (or any other) command, Maven will need to download all the plugins and related dependencies it needs to fulfill the command. From a clean installation of Maven, this can take quite a while (in the output above, it took almost 4 minutes). If you execute the command again, Maven will now have what it needs, so it won't need to download anything new and will be able to execute the command much more quickly.</p>
 <p>As you can see from the output, the compiled classes were placed in <code>${basedir}/target/classes</code>, which is another standard convention employed by Maven. So, if you're a keen observer, you'll notice that by using the standard conventions, the POM above is very small and you haven't had to tell Maven explicitly where any of your sources are or where the output should go. By following the standard Maven conventions, you can get a lot done with very little effort! Just as a casual comparison, let's take a look at what you might have had to do in <a class="externalLink" href="http://ant.apache.org">Ant</a> to accomplish the same <a href="../../ant/build-a1.xml">thing</a>.</p>
 <p>Now, this is simply to compile a single tree of application sources and the Ant script shown is pretty much the same size as the POM shown above. But we'll see how much more we can do with just that simple POM!</p></section><section>
@@ -278,55 +288,101 @@ Compiling 1 source file to &lt;dir&gt;/m
 <div class="source"><pre class="prettyprint linenums">mvn test</pre></div>
 <p>Upon executing this command you should see output like the following:</p>
 <div>
-<pre>[INFO] ----------------------------------------------------------------------------
-[INFO] Building Maven Quick Start Archetype
-[INFO]    task-segment: [test]
-[INFO] ----------------------------------------------------------------------------
-[INFO] artifact org.apache.maven.plugins:maven-surefire-plugin: \
-  checking for updates from central
-...
-[INFO] [resources:resources]
-[INFO] [compiler:compile]
+<pre>[INFO] Scanning for projects...
+[INFO] 
+[INFO] ----------------------&lt; com.mycompany.app:my-app &gt;----------------------
+[INFO] Building my-app 1.0-SNAPSHOT
+[INFO] --------------------------------[ jar ]---------------------------------
+[INFO] 
+[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ my-app ---
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[INFO] skip non existing resourceDirectory &lt;dir&gt;/my-app/src/main/resources
+[INFO] 
+[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ my-app ---
 [INFO] Nothing to compile - all classes are up to date
-[INFO] [resources:testResources]
-[INFO] [compiler:testCompile]
-Compiling 1 source file to C:\Test\Maven2\test\my-app\target\test-classes
-...
-[INFO] [surefire:test]
-[INFO] Setting reports dir: C:\Test\Maven2\test\my-app\target/surefire-reports
-</pre></div>
-<p>T E S T S ------------------------------------------------------- [surefire] Running com.mycompany.app.AppTest [surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0 sec</p></section></section><section>
-<h2><a name="Results_:_.5Bsurefire.5D_Tests_run:_1.2C_Failures:_0.2C_Errors:_0"></a>Results : [surefire] Tests run: 1, Failures: 0, Errors: 0</h2><figure><img src="INFO" alt="" /><figcaption>---------------------------------------------------------------------------- [INFO] BUILD SUCCESSFUL [INFO] ---------------------------------------------------------------------------- [INFO] Total time: 15 seconds [INFO] Finished at: Thu Oct 06 08:12:17 MDT 2005 [INFO] Final Memory: 2M/8M [INFO] ---------------------------------------------------------------------------- ----</figcaption></figure>
+[INFO] 
+[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ my-app ---
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[INFO] skip non existing resourceDirectory &lt;dir&gt;/my-app/src/test/resources
+[INFO] 
+[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ my-app ---
+[INFO] Changes detected - recompiling the module!
+[INFO] Compiling 1 source file to &lt;dir&gt;/my-app/target/test-classes
+[INFO] 
+[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ my-app ---
+[INFO] 
+[INFO] -------------------------------------------------------
+[INFO]  T E S T S
+[INFO] -------------------------------------------------------
+[INFO] Running com.mycompany.app.AppTest
+[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 s - in com.mycompany.app.AppTest
+[INFO] 
+[INFO] Results:
+[INFO] 
+[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
+[INFO] 
+[INFO] ------------------------------------------------------------------------
+[INFO] BUILD SUCCESS
+[INFO] ------------------------------------------------------------------------
+[INFO] Total time:  1.881 s
+[INFO] Finished at: 2020-07-12T12:00:33+01:00
+[INFO] ------------------------------------------------------------------------</pre></div>
 <p>Some things to notice about the output:</p>
 <ul>
 <li>Maven downloads more dependencies this time. These are the dependencies and plugins necessary for executing the tests (it already has the dependencies it needs for compiling and won't download them again).</li>
 <li>Before compiling and executing the tests Maven compiles the main code (all these classes are up to date because we haven't changed anything since we compiled last).</li></ul>
 <p>If you simply want to compile your test sources (but not execute the tests), you can execute the following:</p>
 <div class="source"><pre class="prettyprint linenums"> mvn test-compile</pre></div>
-<p>Now that you can compile your application sources, compile your tests, and execute the tests, you'll want to move on to the next logical step so you'll be asking ...</p><section>
+<p>Now that you can compile your application sources, compile your tests, and execute the tests, you'll want to move on to the next logical step so you'll be asking ...</p></section><section>
 <h3><a name="How_do_I_create_a_JAR_and_install_it_in_my_local_repository.3F"></a><a name="How_do_I_create_a_JAR_and_install_it_in_my_local_repository">How do I create a JAR and install it in my local repository?</a></h3>
 <p>Making a JAR file is straight forward enough and can be accomplished by executing the following command:</p>
 <div class="source"><pre class="prettyprint linenums">mvn package</pre></div>
-<p>If you take a look at the POM for your project you will notice the <code>packaging</code> element is set to <code>jar</code>. This is how Maven knows to produce a JAR file from the above command (we'll talk more about this later). You can now take a look in the <code>${basedir}/target</code> directory and you will see the generated JAR file.</p>
+<p>You can now take a look in the <code>${basedir}/target</code> directory and you will see the generated JAR file.</p>
 <p>Now you'll want to install the artifact you've generated (the JAR file) in your local repository (<code>${user.home}/.m2/repository</code> is the default location). For more information on repositories you can refer to our <a href="../introduction/introduction-to-repositories.html">Introduction to Repositories</a> but let's move on to installing our artifact! To do so execute the following command:</p>
 <div class="source"><pre class="prettyprint linenums">mvn install</pre></div>
 <p>Upon executing this command you should see the following output:</p>
 <div>
-<pre>[INFO] ----------------------------------------------------------------------------
-[INFO] Building Maven Quick Start Archetype
-[INFO]    task-segment: [install]
-[INFO] ----------------------------------------------------------------------------
-[INFO] [resources:resources]
-[INFO] [compiler:compile]
-Compiling 1 source file to &lt;dir&gt;/my-app/target/classes
-[INFO] [resources:testResources]
-[INFO] [compiler:testCompile]
-Compiling 1 source file to &lt;dir&gt;/my-app/target/test-classes
-[INFO] [surefire:test]
-[INFO] Setting reports dir: &lt;dir&gt;/my-app/target/surefire-reports
-</pre></div>
-<p>T E S T S ------------------------------------------------------- [surefire] Running com.mycompany.app.AppTest [surefire] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.001 sec</p></section></section><section>
-<h2><a name="Results_:_.5Bsurefire.5D_Tests_run:_1.2C_Failures:_0.2C_Errors:_0"></a>Results : [surefire] Tests run: 1, Failures: 0, Errors: 0</h2><figure><img src="INFO" alt="" /><figcaption>[jar:jar] [INFO] Building jar: <i>dir</i>/my-app/target/my-app-1.0-SNAPSHOT.jar [INFO] [install:install] [INFO] Installing <i>dir</i>/my-app/target/my-app-1.0-SNAPSHOT.jar to <br /><i>local-repository</i>/com/mycompany/app/my-app/1.0-SNAPSHOT/my-app-1.0-SNAPSHOT.jar [INFO] ---------------------------------------------------------------------------- [INFO] BUILD SUCCESSFUL [INFO] ---------------------------------------------------------------------------- [INFO] Total time: 5 seconds [INFO] Finished at: Tue Oct 04 13:20:32 GMT-05:00 2005 [INFO] Final Memory: 3M/8M [INFO] ---------------------------------------------------------------------------- ----</figcaption></figure>
+<pre>[INFO] Scanning for projects...
+[INFO] 
+[INFO] ----------------------&lt; com.mycompany.app:my-app &gt;----------------------
+[INFO] Building my-app 1.0-SNAPSHOT
+[INFO] --------------------------------[ jar ]---------------------------------
+[INFO] 
+[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ my-app ---
+...
+[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ my-app ---
+[INFO] Nothing to compile - all classes are up to date
+[INFO] 
+[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ my-app ---
+...
+[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ my-app ---
+[INFO] Nothing to compile - all classes are up to date
+[INFO] 
+[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ my-app ---
+[INFO] 
+[INFO] -------------------------------------------------------
+[INFO]  T E S T S
+[INFO] -------------------------------------------------------
+[INFO] Running com.mycompany.app.AppTest
+[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 s - in com.mycompany.app.AppTest
+[INFO] 
+[INFO] Results:
+[INFO] 
+[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
+[INFO] 
+[INFO] 
+[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ my-app ---
+[INFO] Building jar: &lt;dir&gt;/my-app/target/my-app-1.0-SNAPSHOT.jar
+[INFO] 
+[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ my-app ---
+[INFO] Installing &lt;dir&gt;/my-app/target/my-app-1.0-SNAPSHOT.jar to &lt;local-repository&gt;/com/mycompany/app/my-app/1.0-SNAPSHOT/my-app-1.0-SNAPSHOT.jar
+[INFO] Installing &lt;dir&gt;/my-app/pom.xml to &lt;local-repository&gt;/com/mycompany/app/my-app/1.0-SNAPSHOT/my-app-1.0-SNAPSHOT.pom
+[INFO] ------------------------------------------------------------------------
+[INFO] BUILD SUCCESS
+[INFO] ------------------------------------------------------------------------
+[INFO] Total time:  1.678 s
+[INFO] Finished at: 2020-07-12T12:04:45+01:00
+[INFO] ------------------------------------------------------------------------</pre></div>
 <p>Note that the surefire plugin (which executes the test) looks for tests contained in files with a particular naming convention. By default the tests included are:</p>
 <ul>
 <li><code>**/*Test.java</code></li>
@@ -341,7 +397,7 @@ Compiling 1 source file to &lt;dir&gt;/m
 <div class="source"><pre class="prettyprint linenums">mvn site</pre></div>
 <p>There are plenty of other standalone goals that can be executed as well, for example:</p>
 <div class="source"><pre class="prettyprint linenums">mvn clean</pre></div>
-<p>This will remove the <code>target</code> directory with all the build data before starting so that it is fresh.</p><section>
+<p>This will remove the <code>target</code> directory with all the build data before starting so that it is fresh.</p></section><section>
 <h3><a name="What_is_a_SNAPSHOT_version.3F"></a><a name="What_is_a_SNAPSHOT_version">What is a SNAPSHOT version?</a></h3>
 <p>Notice the value of the <b>version</b> tag in the <code>pom.xml</code> file shown below has the suffix: <code>-SNAPSHOT</code>.</p>
 <div class="source"><pre class="prettyprint linenums">&lt;project xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot;

Modified: maven/website/content/guides/getting-started/maven-in-five-minutes.html
==============================================================================
--- maven/website/content/guides/getting-started/maven-in-five-minutes.html (original)
+++ maven/website/content/guides/getting-started/maven-in-five-minutes.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/maven-in-five-minutes.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/maven-in-five-minutes.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Maven in 5 Minutes <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/getting-started/maven-in-five-minutes.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/getting-started/windows-prerequisites.html
==============================================================================
--- maven/website/content/guides/getting-started/windows-prerequisites.html (original)
+++ maven/website/content/guides/getting-started/windows-prerequisites.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/windows-prerequisites.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/windows-prerequisites.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Maven on Windows <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/getting-started/windows-prerequisites.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/index.html
==============================================================================
--- maven/website/content/guides/index.html (original)
+++ maven/website/content/guides/index.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/index.apt.vm at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/index.apt.vm at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Eric Redmond" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Maven Documentation <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/index.apt.vm"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-archetypes.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-archetypes.html (original)
+++ maven/website/content/guides/introduction/introduction-to-archetypes.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-archetypes.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-archetypes.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to Archetypes <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-archetypes.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-dependency-mechanism.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-dependency-mechanism.html (original)
+++ maven/website/content/guides/introduction/introduction-to-dependency-mechanism.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-dependency-mechanism.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-dependency-mechanism.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -44,7 +44,7 @@ Karl Heinz Marbaise" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to the Dependency Mechanism <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-dependency-mechanism.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-optional-and-excludes-dependencies.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-optional-and-excludes-dependencies.html (original)
+++ maven/website/content/guides/introduction/introduction-to-optional-and-excludes-dependencies.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-optional-and-excludes-dependencies.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-optional-and-excludes-dependencies.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Optional Dependencies and Dependency Exclusions <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-optional-and-excludes-dependencies.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-plugin-prefix-mapping.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-plugin-prefix-mapping.html (original)
+++ maven/website/content/guides/introduction/introduction-to-plugin-prefix-mapping.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to Plugin Prefix Resolution <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-plugins.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-plugins.html (original)
+++ maven/website/content/guides/introduction/introduction-to-plugins.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-plugins.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-plugins.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to Maven Plugin Development <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-plugins.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-profiles.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-profiles.html (original)
+++ maven/website/content/guides/introduction/introduction-to-profiles.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-profiles.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-profiles.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to build profiles <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-profiles.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-repositories.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-repositories.html (original)
+++ maven/website/content/guides/introduction/introduction-to-repositories.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-repositories.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-repositories.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Brian Fox" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to Repositories <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-repositories.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-the-lifecycle.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-the-lifecycle.html (original)
+++ maven/website/content/guides/introduction/introduction-to-the-lifecycle.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-lifecycle.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-lifecycle.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to the Build Lifecycle <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-the-lifecycle.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-the-pom.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-the-pom.html (original)
+++ maven/website/content/guides/introduction/introduction-to-the-pom.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-pom.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-pom.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -43,7 +43,7 @@ Brett Porter" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to the POM <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-the-pom.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/introduction/introduction-to-the-standard-directory-layout.html
==============================================================================
--- maven/website/content/guides/introduction/introduction-to-the-standard-directory-layout.html (original)
+++ maven/website/content/guides/introduction/introduction-to-the-standard-directory-layout.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-standard-directory-layout.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-standard-directory-layout.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Introduction to the Standard Directory Layout <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/introduction/introduction-to-the-standard-directory-layout.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-3rd-party-jars-local.html
==============================================================================
--- maven/website/content/guides/mini/guide-3rd-party-jars-local.html (original)
+++ maven/website/content/guides/mini/guide-3rd-party-jars-local.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-3rd-party-jars-local.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-3rd-party-jars-local.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Robert Scholte" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to installing 3rd party JARs <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-3rd-party-jars-local.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-3rd-party-jars-remote.html
==============================================================================
--- maven/website/content/guides/mini/guide-3rd-party-jars-remote.html (original)
+++ maven/website/content/guides/mini/guide-3rd-party-jars-remote.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-3rd-party-jars-remote.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-3rd-party-jars-remote.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to deploying 3rd party JARs to remote repository <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-3rd-party-jars-remote.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-archive-configuration.html
==============================================================================
--- maven/website/content/guides/mini/guide-archive-configuration.html (original)
+++ maven/website/content/guides/mini/guide-archive-configuration.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-archive-configuration.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-archive-configuration.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Configuring Archive Plugins <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-archive-configuration.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-assemblies.html
==============================================================================
--- maven/website/content/guides/mini/guide-assemblies.html (original)
+++ maven/website/content/guides/mini/guide-assemblies.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-assemblies.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-assemblies.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Creating Assemblies <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-assemblies.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-attached-tests.html
==============================================================================
--- maven/website/content/guides/mini/guide-attached-tests.html (original)
+++ maven/website/content/guides/mini/guide-attached-tests.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-attached-tests.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-attached-tests.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to using attached tests <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-attached-tests.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-bash-m2-completion.html
==============================================================================
--- maven/website/content/guides/mini/guide-bash-m2-completion.html (original)
+++ maven/website/content/guides/mini/guide-bash-m2-completion.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-bash-m2-completion.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-bash-m2-completion.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -43,7 +43,7 @@ Karl Heinz Marbaise" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Maven auto completion using BASH <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-bash-m2-completion.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-building-for-different-environments.html
==============================================================================
--- maven/website/content/guides/mini/guide-building-for-different-environments.html (original)
+++ maven/website/content/guides/mini/guide-building-for-different-environments.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-building-for-different-environments.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-building-for-different-environments.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Building For Different Environments <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-building-for-different-environments.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-building-jdk14-on-jdk15.html
==============================================================================
--- maven/website/content/guides/mini/guide-building-jdk14-on-jdk15.html (original)
+++ maven/website/content/guides/mini/guide-building-jdk14-on-jdk15.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-building-jdk14-on-jdk15.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-building-jdk14-on-jdk15.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Building JDK 1.4 Projects Using JDK 1.5 <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-building-jdk14-on-jdk15.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-configuring-maven.html
==============================================================================
--- maven/website/content/guides/mini/guide-configuring-maven.html (original)
+++ maven/website/content/guides/mini/guide-configuring-maven.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-configuring-maven.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-configuring-maven.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Configuring Maven <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-configuring-maven.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-configuring-plugins.html
==============================================================================
--- maven/website/content/guides/mini/guide-configuring-plugins.html (original)
+++ maven/website/content/guides/mini/guide-configuring-plugins.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-configuring-plugins.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-configuring-plugins.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Vincent Siveton" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Configuring Plug-ins <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-configuring-plugins.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-creating-archetypes.html
==============================================================================
--- maven/website/content/guides/mini/guide-creating-archetypes.html (original)
+++ maven/website/content/guides/mini/guide-creating-archetypes.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-creating-archetypes.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-creating-archetypes.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Creating Archetypes <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-creating-archetypes.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-default-execution-ids.html
==============================================================================
--- maven/website/content/guides/mini/guide-default-execution-ids.html (original)
+++ maven/website/content/guides/mini/guide-default-execution-ids.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-default-execution-ids.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-default-execution-ids.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Configuring Default Mojo Executions <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-default-execution-ids.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-deployment-security-settings.html
==============================================================================
--- maven/website/content/guides/mini/guide-deployment-security-settings.html (original)
+++ maven/website/content/guides/mini/guide-deployment-security-settings.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-deployment-security-settings.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-deployment-security-settings.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Deployment and Security Settings <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-deployment-security-settings.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-encryption.html
==============================================================================
--- maven/website/content/guides/mini/guide-encryption.html (original)
+++ maven/website/content/guides/mini/guide-encryption.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-encryption.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-encryption.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Robert Scholte" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Password Encryption <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-encryption.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-generating-sources.html
==============================================================================
--- maven/website/content/guides/mini/guide-generating-sources.html (original)
+++ maven/website/content/guides/mini/guide-generating-sources.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-generating-sources.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-generating-sources.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -43,7 +43,7 @@ Karl Heinz Marbaise" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to generating Sources <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-generating-sources.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-http-settings.html
==============================================================================
--- maven/website/content/guides/mini/guide-http-settings.html (original)
+++ maven/website/content/guides/mini/guide-http-settings.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-http-settings.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-http-settings.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Advanced HTTP Wagon Configuration <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-http-settings.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-manifest.html
==============================================================================
--- maven/website/content/guides/mini/guide-manifest.html (original)
+++ maven/website/content/guides/mini/guide-manifest.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-manifest.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-manifest.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Dennis Lundberg" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Working with Manifests <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-manifest.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-maven-classloading.html
==============================================================================
--- maven/website/content/guides/mini/guide-maven-classloading.html (original)
+++ maven/website/content/guides/mini/guide-maven-classloading.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-maven-classloading.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-maven-classloading.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Anders Kristian Andersen" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Maven Classloading <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-maven-classloading.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

Modified: maven/website/content/guides/mini/guide-mirror-settings.html
==============================================================================
--- maven/website/content/guides/mini/guide-mirror-settings.html (original)
+++ maven/website/content/guides/mini/guide-mirror-settings.html Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-mirror-settings.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-mirror-settings.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -43,7 +43,7 @@ Robert Scholte" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Mirror Settings <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-mirror-settings.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

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 Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-multiple-modules.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-multiple-modules.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Karl Heinz Marbaise" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Working with Multiple Modules <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-multiple-modules.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

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 Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-multiple-repositories.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-multiple-repositories.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to using Multiple Repositories <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-multiple-repositories.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

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 Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-naming-conventions.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-naming-conventions.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to Naming Conventions <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-naming-conventions.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

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 Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-new-committers.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-new-committers.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide for new committers <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-new-committers.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

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 Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-proxies.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-proxies.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -41,7 +41,7 @@
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to using proxies <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-proxies.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>

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 Sun Jul 12 18:00:05 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-releasing.apt at 2020-07-11
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-releasing.apt at 2020-07-12
  | Rendered using Apache Maven Fluido Skin 1.9.1-SNAPSHOT
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -45,7 +45,7 @@ Karl Heinz Marbaise" />
       <li class=""><a href="https://www.apache.org/" class="externalLink" title="Apache">Apache</a><span class="divider">/</span></li>
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
     <li class="active ">Guide to using the release plugin <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-releasing.apt"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-11</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-07-12</li>
       <li class="pull-right"><span class="divider">|</span>
 <a href="../../scm.html" title="Get Sources">Get Sources</a></li>
       <li class="pull-right"><a href="../../download.cgi" title="Download">Download</a></li>