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/02/20 14:15:44 UTC

svn commit: r1874255 [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/faq-unoffical.html
==============================================================================
--- maven/website/content/faq-unoffical.html (original)
+++ maven/website/content/faq-unoffical.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/markdown/faq-unoffical.md at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/markdown/faq-unoffical.md at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -39,7 +39,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 "> <a href="https://github.com/apache/maven-site/tree/master/content/markdown/faq-unoffical.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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>
@@ -120,6 +120,24 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
 <p><i>NOTE:</i> <i>This page contains drafts of user contributed FAQ entries. The content you see here might not be fully fool-proof or might not comply with the best practices promoted by Maven. What is only guaranteed is that they have worked once for some members. It is best to treat these items as &#x201c;works in progress&#x201d; until they have been reviewed and promoted to the main Maven documentation site.</i></p>
 <p>Please follow the format that is being used because it will help in our automated extraction of material which can then be incorporated into the main site.</p>
 <p>This page serves as a collection of questions <i>with</i> answers. If you have a frequently asked question that doesn&#x2019;t yet have an answer, please list that question on [the other page](FAQs].</p>
@@ -174,9 +192,8 @@
 <p>So, to recap:</p>
 <p>parent:</p>
 
-<div>
-<div>
-<pre class="source">&lt;configuration&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;configuration&gt;
   &lt;items&gt;
       &lt;item&gt;one&lt;/item&gt;
       &lt;item&gt;two&lt;/item&gt;
@@ -186,9 +203,8 @@
 
 <p>child:</p>
 
-<div>
-<div>
-<pre class="source">&lt;configuration&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;configuration&gt;
   &lt;items combine.children=&quot;append&quot;&gt;
     &lt;item&gt;three&lt;/item&gt;
   &lt;/items&gt;
@@ -197,9 +213,8 @@
 
 <p>result:</p>
 
-<div>
-<div>
-<pre class="source">&lt;configuration&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;configuration&gt;
   &lt;items&gt;
     &lt;item&gt;one&lt;/item&gt;
     &lt;item&gt;two&lt;/item&gt;
@@ -212,9 +227,8 @@
 <h3><a name="Why_do_I_not_get_an_index.html_page_generated_for_my_project_website.3F"></a>Why do I not get an index.html page generated for my project website?</h3>
 <p>The usual cause of this is configuring maven-project-info-reports plugin and leaving out the &#x2018;index&#x2019; report.</p>
 
-<div>
-<div>
-<pre class="source">      &lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">      &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-project-info-reports-plugin&lt;/artifactId&gt;
         &lt;reportSets&gt;
@@ -240,9 +254,8 @@
 <h3><a name="How_do_I_implement_.E2.80.9Cmaven.jar.override.E2.80.9D_of_Maven_1_with_Maven_2.3F"></a>How do I implement &#x201c;maven.jar.override&#x201d; of Maven 1 with Maven 2?</h3>
 <p>Assume you have an open source project on Source Forge which uses some 3rd party libraries which are not available in any public Maven repository. Still, you want to build your project with Maven 2 - how to deal with those unavailable dependencies? Maven 1 allowed to override the path of files of dependencies, with a relative path, for example to a .jar file included in the projects&#x2019; CVS structure. Maven 2 does not support that, so one way to achieve the same thing is: * Create a multi-module project. The first module contains the local 3rd-party jar files, at any location, with any name. As a simple example, just one file, under the path &#x201c;src/build/jars/acme-worker12.jar&#x201d; * The purpose of the first sub-module is to install the 3rd party .jar file into your local Maven 2 repository through the maven &#x201c;install&#x201d; plugin. This plugin allows to install any given file under any &#x201c;groupId&#x201d;, &#x201c;artifactId&#x201d; and &#x201c;version&#x2
 01d;:</p>
 
-<div>
-<div>
-<pre class="source">&lt;build&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;build&gt;
 	&lt;plugins&gt;
 		&lt;plugin&gt;
 			&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
@@ -273,9 +286,8 @@
 <li>In the second module, where your actual project code is, create a dependency based on the &#x201c;groupId&#x201d;, &#x201c;artifactId&#x201d; and &#x201c;version&#x201d; that you used to install the 3rd party libary.</li>
 </ul>
 
-<div>
-<div>
-<pre class="source">&lt;dependencies&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;dependencies&gt;
 	&lt;dependency&gt;
 		&lt;groupId&gt;acme&lt;/groupId&gt;
 		&lt;artifactId&gt;worker&lt;/artifactId&gt;
@@ -289,9 +301,8 @@
 <h3><a name="How_do_I_install_a_file_in_my_local_repository_along_with_a_generic_POM.3F"></a>How do I install a file in my local repository along with a generic POM?</h3>
 <p>This solution requires at least 2.0.1-SNAPSHOT or above version of Maven 2. You may do this by typing this command (please take note that this is a single line only).</p>
 
-<div>
-<div>
-<pre class="source">mvn install:install-file
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">mvn install:install-file
       -DgroupId=&lt;group-id&gt;
       -DartifactId=&lt;artifact-id&gt;
       -Dversion=&lt;version&gt;
@@ -305,9 +316,8 @@
 <h3><a name="How_do_I_install_a_file_in_my_local_repository_along_with_my_customized_POM.3F"></a>How do I install a file in my local repository along with my customized POM?</h3>
 <p>The solution requires at least 2.0.1-SNAPSHOT or above version of Maven 2 and add the -DpomFile=&lt;path-to-pom&gt; parameter just like the sample below.</p>
 
-<div>
-<div>
-<pre class="source">mvn install:install-file
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">mvn install:install-file
       -DgroupId=&lt;group-id&gt;
       -DartifactId=&lt;artifact-id&gt;
       -Dversion=&lt;version&gt;
@@ -330,9 +340,8 @@
 <p><i>General</i></p></section><section>
 <h3><a name="How_do_I_get_a_plug-in.E2.80.99s_dependencies_from_a_Mojo.3F"></a>How do I get a plug-in&#x2019;s dependencies from a Mojo?</h3>
 
-<div>
-<div>
-<pre class="source">public class MyMojo
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">public class MyMojo
     extends AbstractMojo
 {
     /**
@@ -356,9 +365,8 @@
 </section><section>
 <h3><a name="How_do_I_get_the_project.E2.80.99s_sources_from_a_Mojo.3F"></a>How do I get the project&#x2019;s sources from a Mojo?</h3>
 
-<div>
-<div>
-<pre class="source">public class MyMojo
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">public class MyMojo
     extends AbstractMojo
 {
     /**
@@ -392,9 +400,8 @@
 <p>Warnings from custom repositories (usually located within the organization&#x2019;s network, or even on the same workstation) are triggered when Maven tries to verify the integrity of the files in the repository. This verification is done via the SHA1 or MD5 sum of the file. If these sum files do not exist, then a warning appears.</p>
 <p>Support for downloading the security sum files is not yet included in the Maven2 distribution. There are free command-line utilities on the Internet that generate these sums. Below is an example of a bash script (use <a class="externalLink" href="http://cygwin.com">Cygwin</a> if you are using a windows machine) that generates sha1sum for all jar, xml and pom files contained in the directory where it is executed:</p>
 
-<div>
-<div>
-<pre class="source">#!/usr/bin/bash
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">#!/usr/bin/bash
 
 gensum(){
    shaname=$1.sha1
@@ -456,9 +463,8 @@ rm &quot;$tmpFile&quot;
 <h3><a name="How_do_I_specify_my_remote_repo_in_Maven_2.0_.28i.e..2C_what_is_the_equivalent_of_.E2.80.98maven.repo.remote.E2.80.99_in_Maven_1.x.29.3F"></a>How do I specify my remote repo in Maven 2.0 (i.e., what is the equivalent of &#x2018;maven.repo.remote&#x2019; in Maven 1.x)?</h3>
 <p>To specify a remote repo in Maven 2.0, add the &lt;repositories&gt; element to the POM:</p>
 
-<div>
-<div>
-<pre class="source">&lt;repositories&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;repositories&gt;
   &lt;repository&gt;
     &lt;id&gt;my-repo2&lt;/id&gt;
     &lt;name&gt;your custom repo&lt;/name&gt;
@@ -470,9 +476,8 @@ rm &quot;$tmpFile&quot;
 <p>Or, refer to the following page [<a class="externalLink" href="http://maven.apache.org/guides/mini/guide-multiple-repositories.html">http://maven.apache.org/guides/mini/guide-multiple-repositories.html</a>) <i>Repositories</i></p></section><section>
 <h3><a name="How_do_I_specify_which_output_folders_the_Eclipse_plugin_puts_into_the_.classpath_file.3F"></a>How do I specify which output folders the Eclipse plugin puts into the .classpath file?</h3>
 
-<div>
-<div>
-<pre class="source">&lt;build&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;build&gt;
 ...
   &lt;pluginManagement&gt;
     &lt;plugins&gt;
@@ -500,9 +505,8 @@ rm &quot;$tmpFile&quot;
 <h3><a name="How_do_I_run_an_ant_task_twice.2C_against_two_different_phases.3F"></a>How do I run an ant task twice, against two different phases?</h3>
 <p>You can specify multiple execution elements under the executions tag, giving each a different id and binding them at different phases.</p>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
        &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
        &lt;executions&gt;
          &lt;execution&gt;
@@ -538,9 +542,8 @@ rm &quot;$tmpFile&quot;
 <h3><a name="How_do_I_prevent_tests_from_running_twice.2C_after_adding_a_configuration_for_the_surefire_plugin.3F"></a>How do I prevent tests from running twice, after adding a configuration for the surefire plugin?</h3>
 <p>Declare the configuration outside of the executions tag of the plugin.</p>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
     &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
     &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
     &lt;version&gt;2.0&lt;/version&gt;
@@ -559,9 +562,8 @@ rm &quot;$tmpFile&quot;
 <h3><a name="How_do_I_integrate_static_.28x.29html_into_my_Maven_site.3F"></a>How do I integrate static (x)html into my Maven site?</h3>
 <p>You can integrate your static pages in this several steps, * Put your static pages in the resources directory, ${basedir}/src/site/resources. * Create your site.xml and put it in ${basedir}/src/site. An example below:</p>
 
-<div>
-<div>
-<pre class="source">&lt;project name=&quot;Maven War Plugin&quot;&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project name=&quot;Maven War Plugin&quot;&gt;
   &lt;bannerLeft&gt;
     &lt;name&gt;Maven War Plugin&lt;/name&gt;
     &lt;src&gt;http://maven.apache.org/images/apache-maven-project.png&lt;/src&gt;
@@ -589,9 +591,8 @@ rm &quot;$tmpFile&quot;
 <li>Link the static pages by modifying the &lt;menu&gt; section, create items and map it with the filename of the static pages.</li>
 </ul>
 
-<div>
-<div>
-<pre class="source">&lt;menu name=&quot;Overview&quot;&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;menu name=&quot;Overview&quot;&gt;
   &lt;item name=&quot;Introduction&quot; xhref=&quot;introduction.html&quot;/&gt;
   &lt;item name=&quot;How to Use&quot; xhref=&quot;howto.html&quot;/&gt;
   &lt;item name=&quot;&lt;put-name-here&gt;&quot; xhref=&quot;&lt;filename-of-the-static-page&gt;&quot;/&gt;
@@ -612,9 +613,8 @@ rm &quot;$tmpFile&quot;
 <h3><a name="How_do_I_determine_the_stale_resources_in_a_Mojo_to_avoid_reprocessing_them.3F"></a>How do I determine the stale resources in a Mojo to avoid reprocessing them?</h3>
 <p>This can be done using the following piece of code:</p>
 
-<div>
-<div>
-<pre class="source">// Imports needed
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">// Imports needed
 import org.codehaus.plexus.compiler.util.scan.InclusionScanException;
 import org.codehaus.plexus.compiler.util.scan.StaleSourceScanner;
 import org.codehaus.plexus.compiler.util.scan.mapping.SuffixMapping;
@@ -627,9 +627,8 @@ import org.codehaus.plexus.compiler.util
 
 <p>The second parameter to the StaleSourceScanner is the set of includes, while the third parameter is the set of excludes. You must add a source mapping to the scanner (second line). In this case we&#x2019;re telling the scanner what is the extension of the result file (.html) for each source file extension (.xml). Finally we get the stale files as a Set&lt;File&gt; calling the getIncludedSources method, passing as parameters the source and target directories (of type File). The Maven API doesn&#x2019;t support generics, but you may cast it that way if you&#x2019;re using them. In order to use this API you must include the following dependency in your pom:</p>
 
-<div>
-<div>
-<pre class="source">&lt;dependencies&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;dependencies&gt;
   &lt;dependency&gt;
     &lt;groupId&gt;org.codehaus.plexus&lt;/groupId&gt;
     &lt;artifactId&gt;plexus-compiler-api&lt;/artifactId&gt;
@@ -645,9 +644,8 @@ import org.codehaus.plexus.compiler.util
 <p>buried deep in the stacktrace.</p>
 <p>The only workaround we currently have for this problem is to include another commons-logging Log implementation in the plugin itself. So, you can solve the problem by adding the following to your plugin declaration in your POM:</p>
 
-<div>
-<div>
-<pre class="source">&lt;project&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
   ...
   &lt;build&gt;
     ...
@@ -684,9 +682,8 @@ import org.codehaus.plexus.compiler.util
 <p><i>Sites &amp; Reporting, Plugins and Lifecycle, Command Line</i></p></section><section>
 <h3><a name="How_do_I_deploy_my_binary_during_the_deploy_phase.3F"></a>How do I deploy my binary during the deploy phase?</h3>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
   &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
   &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
   &lt;executions&gt;
@@ -707,9 +704,8 @@ import org.codehaus.plexus.compiler.util
 <h3><a name="How_do_I_add_main_class_in_a_generated_jar.E2.80.99s_manifest.3F"></a>How do I add main class in a generated jar&#x2019;s manifest?</h3>
 <p>Configure the maven-jar-plugin and add your main class.</p>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
   &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
   &lt;artifactId&gt;maven-jar-plugin&lt;/artifactId&gt;
   &lt;configuration&gt;
@@ -725,9 +721,8 @@ import org.codehaus.plexus.compiler.util
 <h3><a name="How_do_I_install_artifacts_to_a_remote_repository.3F"></a>How do I install artifacts to a remote repository?</h3>
 <p>You need at least 2.1-SNAPSHOT version of maven-deploy-plugin to make this work, current workaround to use this is to copy the wagon provider jar (ie. wagon-ftp-1.0-alpha-3.jar) in your %M2_HOME%/lib and execute the command:</p>
 
-<div>
-<div>
-<pre class="source">mvn deploy:deploy-file
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">mvn deploy:deploy-file
     -DgroupId=&lt;groupId&gt;
     -DartifactId=&lt;artifactId&gt;
     -Dversion=&lt;version&gt;
@@ -748,9 +743,8 @@ import org.codehaus.plexus.compiler.util
 <p>Also refer to [How do I skip unit tests when building a project?](How do I skip unit tests when building a project?)</p></section><section>
 <h3><a name="How_do_I_configure_the_equivalent_of_maven.war.src_of_war_plugin_in_Maven_2.0.3F"></a>How do I configure the equivalent of maven.war.src of war plugin in Maven 2.0?</h3>
 
-<div>
-<div>
-<pre class="source">&lt;build&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;build&gt;
   ...
   &lt;plugins&gt;
     &lt;plugin&gt;
@@ -769,9 +763,8 @@ import org.codehaus.plexus.compiler.util
 <h3><a name="How_do_I_execute_the_assembly_plugin_with_different_configurations.3F"></a>How do I execute the assembly plugin with different configurations?</h3>
 <p>Add this to your pom,</p>
 
-<div>
-<div>
-<pre class="source">&lt;build&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;build&gt;
   ...
   &lt;plugins&gt;
     &lt;plugin&gt;
@@ -835,9 +828,8 @@ import org.codehaus.plexus.compiler.util
 <p>No you can&#x2019;t, but you may exclude the dependencies you dont want to include in your project.</p>
 <p>Following is a sample on how to exclude transitive dependencies.</p>
 
-<div>
-<div>
-<pre class="source">&lt;project&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
   ...
   &lt;dependency&gt;
     &lt;groupId&gt;&lt;!-- group id --&gt;&lt;/groupId&gt;
@@ -864,9 +856,8 @@ import org.codehaus.plexus.compiler.util
 <h3><a name="How_do_I_convert_my_.3Creports.3E_from_Maven_1_to_Maven_2.3F"></a>How do I convert my &lt;reports&gt; from Maven 1 to Maven 2?</h3>
 <p>In m1, we declare reports in the pom like this:</p>
 
-<div>
-<div>
-<pre class="source">&lt;project&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
   ...
   &lt;reports&gt;
     &lt;report&gt;maven-checkstyle-plugin&lt;/report&gt;
@@ -877,9 +868,8 @@ import org.codehaus.plexus.compiler.util
 
 <p>In m2, the &lt;reports&gt; tag is replaced with &lt;reporting&gt;</p>
 
-<div>
-<div>
-<pre class="source">&lt;project&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
   ...
   &lt;reporting&gt;
     &lt;plugins&gt;
@@ -906,9 +896,8 @@ import org.codehaus.plexus.compiler.util
 <h3><a name="How_do_I_create_a_command_line_parameter_.28i.e..2C_-Dname.3Dvalue_.29_in_my_mojo.3F"></a>How do I create a command line parameter (i.e., -Dname=value ) in my mojo?</h3>
 <p>In your mojo, put expression=$\{&lt;exp&gt;\} in your parameter field</p>
 
-<div>
-<div>
-<pre class="source">/**
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">/**
  * @parameter expression=&quot;${expression.name}&quot;
  */
 private String exp;
@@ -919,9 +908,8 @@ private String exp;
 <h3><a name="What_is_the_purpose_of_displaying_read-only.2C_plug-in_fields_in_user_documentation.2C_if_they_are_not_configurable_in_the_project_descriptor.3F"></a>What is the purpose of displaying read-only, plug-in fields in user documentation, if they are not configurable in the project descriptor?</h3>
 <p>Often, parameters are specified as read-only to indicate that its value should be changed indirectly, rather than in the plugins &lt;configuration/&gt; section. For instance, I may have a plugin that declares a parameter as such:</p>
 
-<div>
-<div>
-<pre class="source">/**
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">/**
    * @parameter default-value=&quot;${project.build.directory}&quot;
    * @required
    * @readonly
@@ -951,9 +939,8 @@ private String exp;
 <p>If using xmlbuddy with eclipse to edit xdoc files set the encoding Honor encoding Default to ISO-8859-1</p>
 <p>Configuration in pom</p>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
         &lt;configuration&gt;
@@ -966,9 +953,8 @@ private String exp;
 <h3><a name="How_do_I_generate_sources_with_the_antrun_plug-in.3F"></a>How do I generate sources with the antrun plug-in?</h3>
 <p>For instance to generate sources add the following to your plugins section NOTE: this may only work in the latest plugin version in SVN</p>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
     &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
     &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
     &lt;dependencies&gt;
@@ -1006,9 +992,8 @@ private String exp;
 <p>Yes. You can make use of the pom&#x2019;s &lt;properties&gt; element to accomplish this.</p>
 <p>To do so, simply add the following fragment to your pom:</p>
 
-<div>
-<div>
-<pre class="source">&lt;project&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
 ...
   &lt;build&gt;
     &lt;directory&gt;${directory}&lt;/directory&gt;
@@ -1024,9 +1009,8 @@ private String exp;
 
 <p>Now, to specify a different output directory at runtime simply use the directory property as a mvn command line parameter; {code}mvn -Ddirectory=tmp package</p>
 
-<div>
-<div>
-<pre class="source">This will send the build's output files to the $\{basedir}/tmp directory.
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">This will send the build's output files to the $\{basedir}/tmp directory.
 
 _POM, Command Line_
 
@@ -1058,9 +1042,8 @@ i.e.
 <h3><a name="How_do_I_change_the_default_remote_repository.3F"></a>How do I change the default remote repository?</h3>
 <p>Define in your POM a repository with &#x201c;central&#x201d; as the repository id.</p>
 
-<div>
-<div>
-<pre class="source">&lt;repositories&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;repositories&gt;
     &lt;repository&gt;
       :
       &lt;id&gt;central&lt;/id&gt;
@@ -1075,9 +1058,8 @@ i.e.
 <h3><a name="I_have_my_web.xml_in_my_customed_directory_layout_for_my_webapp.2C_but_why_am_I_getting_the_error_.E2.80.9CDeployment_descriptor_.3CPath.3E.5CWEB-INF.5Cweb.xml_does_not_exist.E2.80.9D.3F"></a>I have my web.xml in my customed directory layout for my webapp, but why am I getting the error &#x201c;Deployment descriptor &lt;Path&gt;\WEB-INF\web.xml does not exist&#x201d;?</h3>
 <p>You may specify the path of your web.xml in your webapp by configuring maven-war-plugin.</p>
 
-<div>
-<div>
-<pre class="source">&lt;build&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;build&gt;
    ...
     &lt;plugins&gt;
       &lt;plugin&gt;
@@ -1098,9 +1080,8 @@ i.e.
 <p>And you want the modules at level C and D built when the multi-module POM is built.</p>
 <p>For the first solution: Add the following at the top level POM:</p>
 
-<div>
-<div>
-<pre class="source">&lt;modules&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;modules&gt;
   &lt;module&gt;A/B&lt;/module&gt;
   ...
 &lt;modules&gt;
@@ -1108,27 +1089,24 @@ i.e.
 
 <p>For the second solution: Add the following at the top level POM:</p>
 
-<div>
-<div>
-<pre class="source">&lt;modules&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;modules&gt;
   &lt;module&gt;B&lt;/module&gt;
 &lt;modules&gt;
 </pre></div></div>
 
 <p>And in directory A/B/, add an extra parent POM and add the following:</p>
 
-<div>
-<div>
-<pre class="source">&lt;modules&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;modules&gt;
   &lt;module&gt;C&lt;/module&gt;
 &lt;modules&gt;
 </pre></div></div>
 
 <p>Both ways are effectively the same, but if you have that inheritance structure, the second gives a more natural grouping (eg, you can cd into &#x201c;B&#x201d; and build all its subprojects only). If you do the first solution, the children poms should have the following hint in the parent element:</p>
 
-<div>
-<div>
-<pre class="source">  ...
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">  ...
   &lt;artifactId&gt;A&lt;/artifactId&gt;
   &lt;relativePath&gt;../../pom.xml&lt;/relativePath&gt;
 &lt;/parent&gt;
@@ -1138,16 +1116,14 @@ i.e.
 <h3><a name="How_to_list_all_goals_available_for_a_certain_plugin.3F"></a>How to list all goals available for a certain plugin?</h3>
 <p>We can use the describe goal of maven-projecthelp-plugin to list the goals available, see sample syntax below.</p>
 
-<div>
-<div>
-<pre class="source">mvn projecthelp:describe -Dplugin=org.apache.maven.plugins:maven-eclipse-plugin -Dfull=true
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">mvn projecthelp:describe -Dplugin=org.apache.maven.plugins:maven-eclipse-plugin -Dfull=true
 </pre></div></div>
 
 <p>This would display all the goals and descriptions of the parameters used by maven-eclipse-plugin. \ To get a quick overview about available mojos you can use the &#x2018;help&#x2019; mojo which automatically gets generated in newer plugins.</p>
 
-<div>
-<div>
-<pre class="source">mvn [pluginname]:help
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">mvn [pluginname]:help
 e.g. mvn eclipse:help
 </pre></div></div>
 
@@ -1176,9 +1152,8 @@ e.g. mvn eclipse:help
 <h3><a name="Why_does_Maven_compile_my_test_classes_but_don.E2.80.99t_run_them.3F"></a>Why does Maven compile my test classes but don&#x2019;t run them?</h3>
 <p>Tests are run by the surefire plugin. The surefire plugin can be configured to run certain test classes and you may have unintentionally done so by specifying a value to $ {test}. Check your settings.xml and pom.xml for a property named &#x201c;test&#x201d; which would like this:</p>
 
-<div>
-<div>
-<pre class="source">...
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">...
   &lt;properties&gt;
     &lt;property&gt;
       &lt;name&gt;test&lt;/name&gt;
@@ -1190,9 +1165,8 @@ e.g. mvn eclipse:help
 
 <p>or</p>
 
-<div>
-<div>
-<pre class="source">...
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">...
   &lt;properties&gt;
     &lt;test&gt;some-value&lt;/test&gt;
  &lt;/properties&gt;
@@ -1202,9 +1176,8 @@ e.g. mvn eclipse:help
 <h3><a name="Where_are_the_Maven_XSD_schemas.3F"></a>Where are the Maven XSD schemas?</h3>
 <p>The Maven XSD is located here and the Maven Settings XSD is located here. Your favorite IDE probably supports XSD schema&#x2019;s for pom.xml and settings.xml editing. You need to specify the following:</p>
 
-<div>
-<div>
-<pre class="source">&lt;project xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot;
+<div class="source">
+<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/maven-v4_0_0.xsd&quot;&gt;
@@ -1212,9 +1185,8 @@ e.g. mvn eclipse:help
 &lt;/project&gt;
 </pre></div></div>
 
-<div>
-<div>
-<pre class="source">&lt;settings xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;settings 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/settings-1.0.0.xsd&quot;&gt;
@@ -1230,9 +1202,8 @@ e.g. mvn eclipse:help
 <h3><a name="List_of_available_maven_2_mirrors."></a>List of available maven 2 mirrors.</h3>
 <p>Here is the list of available mirrors you can use, just use one of the following mirror entries in your settings.xml</p>
 
-<div>
-<div>
-<pre class="source">&lt;settings&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;settings&gt;
 
   &lt;mirrors&gt;
     &lt;mirror&gt;
@@ -1286,9 +1257,8 @@ e.g. mvn eclipse:help
 <h3><a name="How_can_I_have_a_child_project_not_inherit_a_goal_.28like_install.29_from_the_parent.3F"></a>How can I have a child project not inherit a goal (like install) from the parent?</h3>
 <p>Use the inherited property. Set it to false in the plugin configuration. So for example, if you want your parent project to be installed but not your child, configure the install plugin like so:</p>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
    &lt;artifactId&gt;maven-install-plugin&lt;/artifactId&gt;
    &lt;configuration&gt;
       &lt;inherited&gt;false&lt;/inherited&gt;
@@ -1304,9 +1274,8 @@ e.g. mvn eclipse:help
 <p>There are no tools.jar on a mac. The classes are included in the normal java runtime ( /System/Library/Frameworks/ JavaVM.framework/Classes/classes.jar. Refer to this link [http://lists.apple.com/archives/java-dev/2002/Jun/msg00901.html] )</p>
 <p>You only have to modify the &lt;systemPath&gt; pointing to your classes.jar on MacOSX.</p>
 
-<div>
-<div>
-<pre class="source">&lt;dependency&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;dependency&gt;
             &lt;groupId&gt;sun.jdk&lt;/groupId&gt;
             &lt;artifactId&gt;tools&lt;/artifactId&gt;
             &lt;version&gt;1.5.0&lt;/version&gt;
@@ -1318,9 +1287,8 @@ e.g. mvn eclipse:help
 <h3><a name="How_do_I_include_tools.jar_in_my_dependencies.3F"></a>How do I include tools.jar in my dependencies?</h3>
 <p>The following code includes tools.jar on Sun JDKs (it is already included in the runtime for Mac OS X and some free JDKs).</p>
 
-<div>
-<div>
-<pre class="source">...
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">...
   &lt;profiles&gt;
     &lt;profile&gt;
       &lt;id&gt;default-tools.jar&lt;/id&gt;
@@ -1350,9 +1318,8 @@ e.g. mvn eclipse:help
 <h3><a name="How_to_make_a_war_artifact_as_a_dependency.3F"></a>How to make a war artifact as a dependency?</h3>
 <p>When specifying a war as dependency, make sure that you have set the &lt;type&gt; to war.</p>
 
-<div>
-<div>
-<pre class="source">&lt;dependency&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;dependency&gt;
         &lt;groupId&gt;&lt;!-- groupId of the war --&gt;&lt;/groupId&gt;
         &lt;artifactId&gt;&lt;!-- artifactId of the war --&gt;&lt;/artifactId&gt;
        &lt;version&gt;&lt;! -- version of the war --&gt;&lt;/version&gt;
@@ -1363,9 +1330,8 @@ e.g. mvn eclipse:help
 <h3><a name="How_can_I_change_the_default_location_of_the_generated_jar_when_I_command_.E2.80.9Cmvn_package.E2.80.9D.3F"></a>How can I change the default location of the generated jar when I command &#x201c;mvn package&#x201d;?</h3>
 <p>By default, the location of the generated jar is in ${project.build.directory} or in your target directory. We can change this by configuring the outputDirectory of maven-jar-plugin.</p>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
             &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
             &lt;artifactId&gt;maven-jar-plugin&lt;/artifactId&gt;
             &lt;configuration&gt;
@@ -1396,16 +1362,14 @@ e.g. mvn eclipse:help
 <h3><a name="How_do_I_get_the_top_line_of_a_table_to_be_.E2.80.9Cheaders.E2.80.9D_for_that_column_in_APT.3F"></a>How do I get the top line of a table to be &#x201c;headers&#x201d; for that column in APT?</h3>
 <p>With the snapshot you can do:</p>
 
-<div>
-<div>
-<pre class="source">](]( header 1 ](]( header 2 ](]( header 3 ](](
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">](]( header 1 ](]( header 2 ](]( header 3 ](](
 </pre></div></div>
 
 <p>Example:</p>
 
-<div>
-<div>
-<pre class="source">*----------------+----------------*--------------------------+
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">*----------------+----------------*--------------------------+
 ](]( header 1 ](](   ]( ](]( header 2 ](]( ]( ](]( header 2 ](](
 *----------------+----------------*--------------------------+
 cell1            ]( cell1          ](  cell3
@@ -1416,18 +1380,16 @@ cell1            ]( cell1          ](  c
 <p>Wagon is really for repository interaction, though it could be used for this.</p>
 <p>To get the wagon:</p>
 
-<div>
-<div>
-<pre class="source">/* @component roleHint=&quot;http&quot; */
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">/* @component roleHint=&quot;http&quot; */
 Wagon wagon;
 </pre></div></div>
 </section><section>
 <h3><a name="How_do_I_set_the_base_directory_for_creating_the_packages_created_by_assembly.3F"></a>How do I set the base directory for creating the packages created by assembly?</h3>
 <p>The assembly plugin, by default, saves the packages to your project.build.directory folder from your pom or</p>
 
-<div>
-<div>
-<pre class="source">&lt;project&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
 ...
 &lt;build&gt;
   &lt;directory&gt;path-here&lt;/directory
@@ -1441,9 +1403,8 @@ Wagon wagon;
 <h3><a name="How_do_I_filter_which_classes_should_be_put_inside_the_packaged_jar.3F"></a>How do I filter which classes should be put inside the packaged jar?</h3>
 <p>All compiled classes are always put into the packaged jar. However, you can configure the compiler plugin to exclude compiling some of the java sources using the compiler parameter excludes as follows:</p>
 
-<div>
-<div>
-<pre class="source">&lt;project&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
  ...
  &lt;build&gt;
    ...
@@ -1468,9 +1429,8 @@ Wagon wagon;
 <h3><a name="Is_it_possible_to_use_HashMap_as_configurable_parameter_in_a_plugin.3F_How_do_I_configure_that_in_pom.xml.3F"></a>Is it possible to use HashMap as configurable parameter in a plugin? How do I configure that in pom.xml?</h3>
 <p>Yes. Its possible to use a HashMap field as a parameter in your plugin. To use it, your pom configuration should look like this:</p>
 
-<div>
-<div>
-<pre class="source">&lt;myMap&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;myMap&gt;
     &lt;yourkey&gt;yourvalue&lt;/yourkey&gt;
     .....
  &lt;/myMap&gt;
@@ -1498,9 +1458,8 @@ Wagon wagon;
 <h3><a name="How_can_I_create_an_archetype_with_resources_mapped_to_the_class_files_directory.3F"></a>How can I create an archetype with resources mapped to the class files directory?</h3>
 <p>Specify the resources to be sources as shown below:</p>
 
-<div>
-<div>
-<pre class="source">&lt;sources&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;sources&gt;
  &lt;source&gt;src/main/resources/sampleXml.xml&lt;/source&gt;
  &lt;source&gt;src/main/resources/sampleProperties.properties&lt;/source&gt;
 &lt;/sources&gt;
@@ -1509,9 +1468,8 @@ Wagon wagon;
 <h3><a name="How_do_I_add_a_description_to_the_welcome_page_of_the_generated_site_when_I_execute_mvn_site.3F"></a>How do I add a description to the welcome page of the generated site when I execute mvn site?</h3>
 <p>Fille up the &lt;description&gt; in the pom.xml as shown below:</p>
 
-<div>
-<div>
-<pre class="source">&lt;project&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
 ...
 &lt;description&gt; put your description here&lt;/description&gt;
 ....
@@ -1541,9 +1499,8 @@ Wagon wagon;
 <p>For an example, let&#x2019;s say you have a Java source at src/main/java/com/junk/JunkBean.java. For it to compile correctly, it needs to have a &#x201c;package com.junk;&#x201d; in it. When XDoclet walks the source starting at &#x201c;src/main&#x201d;, it find a source file that identifies itself as being in package &#x201c;com.junk&#x201d; but it findsthe source in package &#x201c;java.com.junk&#x201d;. Since the two don&#x2019;t match, XDoclet assumes that there is a serious problem with the source file and ignores it.</p></section><section>
 <h3><a name="How_do_I_indicate_array_types_in_a_MOJO_configuration.3F"></a>How do I indicate array types in a MOJO configuration?</h3>
 
-<div>
-<div>
-<pre class="source">&lt;tags&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;tags&gt;
   &lt;tag&gt;value1&lt;/tag&gt;
   &lt;tag&gt;value2&lt;/tag&gt;
 &lt;/tags&gt;
@@ -1553,9 +1510,8 @@ Wagon wagon;
 <p>How will the plugin be licensed? Is it intended to just be a binary distribution or will the source be available? Where will be the documentation be? How will people find out about it? I think your choice is probably influenced by these questions. One option, of course, is to propose it to mojo.codehaus.org if you want to and can share the code.</p></section><section>
 <h3><a name="I_issued_mvn_-Declipse.downloadSources.3Dtrue_eclipse_eclipse_goal._It_created_.classpath_and_.project_for_both_modules.2C_and_in_my_local_repository_it_downloaded_sources_Ho_do_I_access_them_in_eclipse.3F"></a>I issued mvn -Declipse.downloadSources=true eclipse eclipse goal. It created .classpath and .project for both modules, and in my local repository it downloaded sources Ho do I access them in eclipse?</h3>
 
-<div>
-<div>
-<pre class="source">&lt;build&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;build&gt;
         &lt;pluginManagement&gt;
             &lt;plugins&gt;
                 &lt;plugin&gt;
@@ -1573,18 +1529,16 @@ Wagon wagon;
 
 <p>Make sure the generated .classpath actually contains sourcepath attributes, like this:</p>
 
-<div>
-<div>
-<pre class="source">&lt;classpathentry kind=&quot;var&quot;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;classpathentry kind=&quot;var&quot;
                 path=&quot;M2_REPO/javax/servlet/servlet-api/ 2.4/servlet-api-2.4.jar&quot;
                 sourcepath=&quot;M2_REPO/javax/servlet/servlet- api/2.4/servlet-api-2.4-sources.jar&quot;/&gt;
 </pre></div></div>
 </section><section>
 <h3><a name="Is_there_a_setting_for_testing.2C_where_I_can_add_a_directory_to_the_classpath.2C_which_will_allow_the_tests_to_access_the_files.3F"></a>Is there a setting for testing, where I can add a directory to the classpath, which will allow the tests to access the files?</h3>
 
-<div>
-<div>
-<pre class="source">&lt;testResources&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;testResources&gt;
          &lt;testResource&gt;
             &lt;targetPath&gt;org/apache/struts/resources&lt;/targetPath&gt;
             &lt;directory&gt;conf/java&lt;/directory&gt;
@@ -1617,9 +1571,8 @@ Wagon wagon;
 <p>For example, &lt;repositories&gt; in pom.xml would tell all users of the project to use the &lt;repositories&gt; specified in the pom.xml. However, some users may prefer to use a mirror instead, so they&#x2019;ll put &lt;mirrors&gt; in their settings.xml so they can choose a faster repository server.</p>
 <p>so there you go:</p>
 
-<div>
-<div>
-<pre class="source">settings.xml &gt; user scope
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">settings.xml &gt; user scope
 pom.xml &gt; project scope
 </pre></div></div>
 </section><section>
@@ -1632,9 +1585,8 @@ pom.xml &gt; project scope
 <h3><a name="What_is_a_Snapshot.3F"></a>What is a Snapshot?</h3>
 <p>A snapshot is a development version. e.g, 2.0-SNAPSHOT is the still-in-development future 2.0. If you want to use a snapshot, juste use &lt;version&gt; , e.g. &lt;version&gt;2.0-SNAPSHOT&lt;/version&gt;. But first you must ensure that you have access to the repository containing this version. For example, for Maven snapshots as stated below, you could use :</p>
 
-<div>
-<div>
-<pre class="source">&lt;repositories&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;repositories&gt;
   &lt;repository&gt;
     &lt;id&gt;maven-snapshots&lt;/id&gt;
     &lt;url&gt;http://snapshots.maven.codehaus.org/&lt;/url&gt;
@@ -1644,9 +1596,8 @@ pom.xml &gt; project scope
 
 <p>or, for plugins :</p>
 
-<div>
-<div>
-<pre class="source">&lt;pluginRepositories&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;pluginRepositories&gt;
   &lt;pluginRepository&gt;
     &lt;id&gt;maven-snapshots&lt;/id&gt;
     &lt;url&gt; http://snapshots.maven.codehaus.org/&lt;/url&gt;
@@ -1661,9 +1612,8 @@ pom.xml &gt; project scope
 <h3><a name="If_two_versions_of_the_same_dependency_are_at_the_same_depth.2C_how_do_you_know_or_predict_which_version_will_be_used.3F"></a>If two versions of the same dependency are at the same depth, how do you know or predict which version will be used?</h3>
 <p>The order in which dependencies are declared effectively becomes the tie-breaker when two dependency versions are declared at the same depth&#x2026;so if:</p>
 
-<div>
-<div>
-<pre class="source">A -&gt; B, C
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">A -&gt; B, C
 B -&gt; D (v2)
 C -&gt; D (v3)
 and A declares the following:
@@ -1683,9 +1633,8 @@ and A declares the following:
 <h3><a name="How_do_I_configure_a_project_to_use_a_specific_version_of_a_JDK.3F"></a>How do I configure a project to use a specific version of a JDK?</h3>
 <p>Use the following plugin:</p>
 
-<div>
-<div>
-<pre class="source">&lt;plugin&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;plugin&gt;
        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
        &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
        &lt;configuration&gt;
@@ -1700,9 +1649,8 @@ and A declares the following:
 <h3><a name="Is_there_a_way_to_use_the_current_date_in_the_POM.3F"></a>Is there a way to use the current date in the POM?</h3>
 <p>Take a look at the buildnumber plugin. It can be used to generate a build date each time I do a build, as follows:</p>
 
-<div>
-<div>
-<pre class="source">        &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">        &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
         &lt;artifactId&gt;maven-buildnumber-plugin&lt;/artifactId&gt;
         &lt;version&gt;0.9.4&lt;/version&gt;
         &lt;configuration&gt;
@@ -1734,9 +1682,8 @@ and A declares the following:
 <h3><a name="When_I_run_mvn_release:prepare.2C_I_get_a_build_failure_saying_.E2.80.9CUnable_to_tag_SCM.2C_File_.28.E2.80.A6.29_already_exists.E2.80.9D._However.2C_the_tag_does_not_exist._What_is_wrong.3F"></a>When I run mvn release:prepare, I get a build failure saying &#x201c;Unable to tag SCM, File (&#x2026;) already exists&#x201d;. However, the tag does not exist. What is wrong?</h3>
 <p>The full failure will look something like this: &#x2018;/stuff/tags/example/pom.xml&#x2019;</p>
 
-<div>
-<div>
-<pre class="source">[INFO\] Tagging release with the label stuff-1.0.0...
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">[INFO\] Tagging release with the label stuff-1.0.0...
 [INFO\] Executing: svn \--non-interactive copy \--file C:\DOCUME~1\G980143\LOCALS~1\Temp\maven-scm-1259783654.commit . http://www.example.com/subversion/repo/example/tags/stuff-1.0.0
 [INFO\] Working directory: C:\projects\stuff\branches\1.0.x
 [INFO\] \-----------------------------------------------------------------------\-
@@ -1760,9 +1707,8 @@ svn: File 'subversion/repo/example/tags/
 <h3><a name="How_do_I_read_the_version_from_the_pom.xml_and_then_using_Java_display_the_version_on_my_application.3F"></a>How do I read the version from the pom.xml and then using Java display the version on my application?</h3>
 <p>If you want to read a pom file, you can use the MavenXpp3Reader#read(&#x2026; ). But if you simply want to get the version of your currently running maven project inside your pom ( which is usually the case ), you can simply do:</p>
 
-<div>
-<div>
-<pre class="source">/**
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">/**
 * @parameter expression=&quot;${project.version}&quot;
 */
 private String version;
@@ -1773,9 +1719,8 @@ private String version;
 <p>You can do this by using the maven-buildhelper-plugin. It allows you to add additional source directories.</p></section><section>
 <h3><a name="How_do_I_add_properties_to_a_pom.3F"></a>How do I add properties to a pom?</h3>
 
-<div>
-<div>
-<pre class="source">&lt;properties&gt;
+<div class="source">
+<div class="source"><pre class="prettyprint linenums">&lt;properties&gt;
   &lt;myproperty&gt;propertyvalue&lt;/myproperty&gt;
 &lt;/properties&gt;
 </pre></div></div>

Modified: maven/website/content/general.html
==============================================================================
--- maven/website/content/general.html (original)
+++ maven/website/content/general.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/fml/general.fml at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/fml/general.fml at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -39,7 +39,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 ">Frequently Asked Technical Questions <a href="https://github.com/apache/maven-site/tree/master/content/fml/general.fml"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/glossary.html
==============================================================================
--- maven/website/content/glossary.html (original)
+++ maven/website/content/glossary.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/markdown/glossary.md at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/markdown/glossary.md at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -39,7 +39,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 ">Glossary <a href="https://github.com/apache/maven-site/tree/master/content/markdown/glossary.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/development/guide-building-maven.html
==============================================================================
--- maven/website/content/guides/development/guide-building-maven.html (original)
+++ maven/website/content/guides/development/guide-building-maven.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-building-maven.apt at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-building-maven.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -42,7 +42,7 @@ Jason van Zyl" />
       <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 Maven <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-building-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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/development/guide-committer-school.html
==============================================================================
--- maven/website/content/guides/development/guide-committer-school.html (original)
+++ maven/website/content/guides/development/guide-committer-school.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-committer-school.apt at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-committer-school.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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 ">Do you want to become a Maven Committer? <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-committer-school.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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/development/guide-documentation-style.html
==============================================================================
--- maven/website/content/guides/development/guide-documentation-style.html (original)
+++ maven/website/content/guides/development/guide-documentation-style.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-documentation-style.apt at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-documentation-style.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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 Maven Documentation Style <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-documentation-style.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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/development/guide-helping.html
==============================================================================
--- maven/website/content/guides/development/guide-helping.html (original)
+++ maven/website/content/guides/development/guide-helping.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-helping.apt at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-helping.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -43,7 +43,7 @@ Jason van Zyl" />
       <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 helping with Maven <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-helping.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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/development/guide-maven-development.html
==============================================================================
--- maven/website/content/guides/development/guide-maven-development.html (original)
+++ maven/website/content/guides/development/guide-maven-development.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-maven-development.apt at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-maven-development.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -44,7 +44,7 @@ Maarten Mulders" />
       <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 Developing Maven <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-maven-development.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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/development/guide-plugin-documentation.html
==============================================================================
--- maven/website/content/guides/development/guide-plugin-documentation.html (original)
+++ maven/website/content/guides/development/guide-plugin-documentation.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-plugin-documentation.apt at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-plugin-documentation.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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 the Plugin Documentation Standard <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-plugin-documentation.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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/development/guide-testing-development-plugins.html
==============================================================================
--- maven/website/content/guides/development/guide-testing-development-plugins.html (original)
+++ maven/website/content/guides/development/guide-testing-development-plugins.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-testing-development-plugins.apt at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-testing-development-plugins.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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 Testing Development Versions of Plugins <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-testing-development-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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/development/guide-testing-releases.html
==============================================================================
--- maven/website/content/guides/development/guide-testing-releases.html (original)
+++ maven/website/content/guides/development/guide-testing-releases.html Thu Feb 20 14:15:42 2020
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-testing-releases.apt at 2020-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/development/guide-testing-releases.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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 Testing Staged Releases <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-testing-releases.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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/index.html
==============================================================================
--- maven/website/content/guides/getting-started/index.html (original)
+++ maven/website/content/guides/getting-started/index.html Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/index.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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/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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/maven-in-five-minutes.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/getting-started/windows-prerequisites.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/index.apt.vm at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-archetypes.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-dependency-mechanism.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-optional-and-excludes-dependencies.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-plugin-prefix-mapping.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-plugins.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-profiles.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-repositories.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-lifecycle.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-pom.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/introduction/introduction-to-the-standard-directory-layout.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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 Thu Feb 20 14:15:42 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-02-13
+ | Generated by Apache Maven Doxia Site Renderer 1.9.1 from content/apt/guides/mini/guide-3rd-party-jars-local.apt at 2020-02-20
  | Rendered using Apache Maven Fluido Skin 1.8
 -->
 <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-02-13</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2020-02-20</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>