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 sl...@apache.org on 2023/02/09 00:34:07 UTC

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

Modified: maven/website/content/guides/plugin/guide-java-report-plugin-development.html
==============================================================================
--- maven/website/content/guides/plugin/guide-java-report-plugin-development.html (original)
+++ maven/website/content/guides/plugin/guide-java-report-plugin-development.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/apt/guides/plugin/guide-java-report-plugin-development.apt at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/guides/plugin/guide-java-report-plugin-development.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -10,8 +10,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 2.0.0-M4" />
-    <meta name="author" content="Hervé Boutemy
-Bertrand Martin" />
+    <meta name="author" content="Hervé Boutemy, Bertrand Martin" />
     <meta name="date" content="2018-01-21" />
     <title>Maven &#x2013; Guide to Developing Java Report Plugins</title>
     <link rel="stylesheet" href="../../css/apache-maven-fluido-1.11.1.min.css" />
@@ -49,8 +48,8 @@ Bertrand Martin" />
           <ul class="breadcrumb">
       <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 Java Report Plugins <a href="https://github.com/apache/maven-site/tree/master/content/apt/guides/plugin/guide-java-report-plugin-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: 2023-02-08</li>
+    <li class="active ">Guide to Developing Java Report Plugins <a href="https://github.com/apache/maven-site/tree/master/content/markdown/guides/plugin/guide-java-report-plugin-development.md"><img src="../../images/accessories-text-editor.png" title="Edit" /></a></li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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>
@@ -137,16 +136,34 @@ Bertrand Martin" />
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h1>Introduction</h1>
+<!--
+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.
+-->
+<section><section>
+<h2>Introduction</h2>
 <p>This guide is intended to assist users in developing reporting plugins for Maven in Java, that will contribute to sites generated by <a href="/plugins/maven-site-plugin/"><code>maven-site-plugin</code></a> or site PDF documents generated by <a href="/plugins/maven-pdf-plugin/"><code>maven-pdf-site</code></a>.</p>
-<p>First and foremost, a <i>report plugin</i> is a <i>Maven plugin</i> and it is strongly advised to first read the <a href="./guide-java-plugin-development.html">Guide to Developing Java Plugins</a> to properly understand its core mechanisms.</p>
-<p>A plugin is actually not a <i>report plugin</i> in itself. But one (or several) of its goals or <i>Mojos</i> may be specialized to be invoked by <a href="/plugins/maven-site-plugin/"><code>maven-site-plugin</code></a>, typically during the <code>site</code> build life cycle.</p>
-<p>A Maven plugin can therefore implement <i>regular</i> goals and <i>report</i> goals. The below details how to write a <i>Mojo</i> that will get invoked as a <i>report</i> by <a href="/plugins/maven-site-plugin/"><code>maven-site-plugin</code></a>.</p><section>
-<h2>How It Works</h2>
-<ol style="list-style-type: decimal">
-<li> A regular Maven project usually invokes <i>reporting goals</i> of a plugin by declaring such plugin in the <a href="/plugins/maven-site-plugin/examples/configuring-reports.html"><code>&lt;reporting&gt;</code></a> section of its <code>pom.xml</code> as in the example below:
-<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
+<p>First and foremost, a <em>report plugin</em> is a <em>Maven plugin</em> and it is strongly advised to first read the <a href="./guide-java-plugin-development.html">Guide to Developing Java Plugins</a> to properly understand its core mechanisms.</p>
+<p>A plugin is actually not a <em>report plugin</em> in itself. But one (or several) of its goals or <em>Mojos</em> may be specialized to be invoked by <a href="/plugins/maven-site-plugin/"><code>maven-site-plugin</code></a>, typically during the <code>site</code> build life cycle.</p>
+<p>A Maven plugin can therefore implement <em>regular</em> goals and <em>report</em> goals. The below details how to write a <em>Mojo</em> that will get invoked as a <em>report</em> by <a href="/plugins/maven-site-plugin/"><code>maven-site-plugin</code></a>.</p><section>
+<h3>How It Works</h3>
+<p>1  A regular Maven project usually invokes <em>reporting goals</em> of a plugin by declaring such plugin in the <a href="/plugins/maven-site-plugin/examples/configuring-reports.html"><code>\&lt;reporting\&gt;</code></a> section of its <code>pom.xml</code> as in the example below:</p>
+
+<div class="source"><pre class="prettyprint linenums"><code>&lt;project&gt;
   ...
   &lt;reporting&gt;
     &lt;plugins&gt;
@@ -157,39 +174,61 @@ Bertrand Martin" />
       &lt;/plugin&gt;
     &lt;/plugins&gt;
   &lt;/reporting&gt;
-  ...</pre></div></li>
-<li> When <a href="/plugins/maven-site-plugin/"><code>maven-site-plugin</code></a> is invoked (for example with the <code>mvn site</code> command), the specified plugins are loaded and the <code>generate()</code> method of each Mojo class that implements <a href="/shared/maven-reporting-api/apidocs/org/apache/maven/reporting/MavenReport.html"><code>MavenReport</code></a> is executed.</li>
-<li> The <code>generate()</code> method generates a document through Maven's <a href="/doxia/doxia/doxia-sink-api/">Doxia Sink API</a>. This document is comprised of basic elements like title, headings, text, links, tables, etc. This is where you will put the logic of your report, assembling elements, based on the content of the Maven project.</li>
-<li> These document elements are passed to Doxia to generate an HTML document, which itself gets wrapped into a <a href="/skins/">Maven Skin</a>, as specified in the projects <a href="/guides/mini/guide-site.html"><code>./src/site/site.xml</code></a>.</li>
-<li> The result produces an HTML file in the <code>./target/site</code> directory of your project.</li></ol>
+  ...
+</code></pre></div>
+<p>1  When <a href="/plugins/maven-site-plugin/"><code>maven-site-plugin</code></a> is invoked (for example with the <code>mvn site</code> command), the specified plugins are loaded and the <code>generate()</code> method of each Mojo class that implements <a href="/shared/maven-reporting-api/apidocs/org/apache/maven/reporting/MavenReport.html"><code>MavenReport</code></a> is executed.</p>
+<p>1  The <code>generate()</code> method generates a document through Maven's <a href="/doxia/doxia/doxia-sink-api/">Doxia Sink API</a>. This document is comprised of basic elements like title, headings, text, links, tables, etc. This is where you will put the logic of your report, assembling elements, based on the content of the Maven project.</p>
+<p>1  These document elements are passed to Doxia to generate an HTML document, which itself gets wrapped into a <a href="/skins/">Maven Skin</a>, as specified in the projects <a href="/guides/mini/guide-site.html"><code>./src/site/site.xml</code></a>.</p>
+<p>1  The result produces an HTML file in the <code>./target/site</code> directory of your project.</p>
 <p><a href="/doxia/doxia-sitetools/doxia-site-renderer/">More details about Doxia Site Renderer</a></p></section><section>
-<h2>Basic Requirements of a Report <i>Mojo</i></h2>
-<p>Each goal or <i>Mojo</i> is implemented with a separate Java class. For a <i>Mojo</i> to become a <i>report Mojo</i>, it needs to implement <a href="/shared/maven-reporting-api/apidocs/org/apache/maven/reporting/MavenReport.html"><code>org.apache.maven.reporting.MavenReport</code></a> (in addition to <a href="/ref/current/apidocs/org/apache/maven/plugin/Mojo.html"><code>org.apache.maven.plugin.Mojo</code></a>).</p>
-<p>An easy way to implement both <code>Mojo</code> and <code>MavenReport</code> interfaces is to extend the <a href="/shared/maven-reporting-impl/apidocs/org/apache/maven/reporting/AbstractMavenReport.html"><code>org.apache.maven.reporting.AbstractMavenReport</code></a> class provided by <a href="/shared/maven-reporting-impl/"><code>maven-reporting-impl</code></a> (instead of <code>org.apache.maven.plugin.AbstractMojo</code> for a regular <i>Mojo</i>).</p>
+<h3>Basic Requirements of a Report <em>Mojo</em></h3>
+<p>Each goal or <em>Mojo</em> is implemented with a separate Java class. For a <em>Mojo</em> to become a <em>report Mojo</em>, it needs to implement <a href="/shared/maven-reporting-api/apidocs/org/apache/maven/reporting/MavenReport.html"><code>org.apache.maven.reporting.MavenReport</code></a> (in addition to <a href="/ref/current/apidocs/org/apache/maven/plugin/Mojo.html"><code>org.apache.maven.plugin.Mojo</code></a>).</p>
+<p>An easy way to implement both <code>Mojo</code> and <code>MavenReport</code> interfaces is to extend the <a href="/shared/maven-reporting-impl/apidocs/org/apache/maven/reporting/AbstractMavenReport.html"><code>org.apache.maven.reporting.AbstractMavenReport</code></a> class provided by <a href="/shared/maven-reporting-impl/"><code>maven-reporting-impl</code></a> (instead of <code>org.apache.maven.plugin.AbstractMojo</code> for a regular <em>Mojo</em>).</p>
 <p>The class will need to implement the following methods:</p>
 <ul>
-<li><code>public String getOutputName()</code>: returns the name of page that will be produced</li>
-<li><code>public String getName(Locale locale)</code>: returns the display name of the report</li>
-<li><code>public String getDescription(Locale locale)</code>: returns the description of the report</li>
-<li><code>protected void executeReport(Locale locale) throws MavenReportException</code>: produces the actual report</li></ul>
-<p>To build a Maven plugin that includes <i>report Mojos</i>, the <code>pom.xml</code> of your project will need declare the project as a regular plugin, and include specific dependencies required by the report <i>Mojos</i>:</p>
+
+<li>
+<p><code>public String getOutputName()</code>: returns the name of page that will be produced</p></li>
+<li>
+<p><code>public String getName(Locale locale)</code>: returns the display name of the report</p></li>
+<li>
+<p><code>public String getDescription(Locale locale)</code>: returns the description of the report</p></li>
+<li>
+<p><code>protected void executeReport(Locale locale) throws MavenReportException</code>: produces the actual report</p></li>
+</ul>
+<p>To build a Maven plugin that includes <em>report Mojos</em>, the <code>pom.xml</code> of your project will need declare the project as a regular plugin, and include specific dependencies required by the report <em>Mojos</em>:</p>
 <ul>
-<li><a href="/shared/maven-reporting-impl/dependency-info.html"><code>org.apache.maven.reporting:maven-reporting-impl</code></a></li>
-<li><a href="/shared/maven-reporting-api/project-summary.html"><code>org.apache.maven.reporting:maven-reporting-api</code></a></li></ul></section><section>
-<h2>A (Very) Simple Report</h2>
-<p>Let's write a very simple <i>report Mojo</i> in a very simple Maven plugin:</p>
+
+<li>
+<p><a href="/shared/maven-reporting-impl/dependency-info.html"><code>org.apache.maven.reporting:maven-reporting-impl</code></a></p></li>
+<li>
+<p><a href="/shared/maven-reporting-api/project-summary.html"><code>org.apache.maven.reporting:maven-reporting-api</code></a></p></li>
+</ul></section><section>
+<h3>A (Very) Simple Report</h3>
+<p>Let's write a very simple <em>report Mojo</em> in a very simple Maven plugin:</p>
 <ul>
-<li>Plugin's name: <b>Simple Plugin</b></li>
-<li>Plugin's artifact coordinates: <code>com.mycompany.maven:simple-maven-plugin:1.0-SNAPSHOT</code></li>
-<li>One goal: <b>simple</b></li>
-<li>One result: <code>simple-report.html</code></li></ul>
+
+<li>
+<p>Plugin's name: <strong>Simple Plugin</strong></p></li>
+<li>
+<p>Plugin's artifact coordinates: <code>com.mycompany.maven:simple-maven-plugin:1.0-SNAPSHOT</code></p></li>
+<li>
+<p>One goal: <strong>simple</strong></p></li>
+<li>
+<p>One result: <code>simple-report.html</code></p></li>
+</ul>
 <p>Our Maven plugin project has 2 files only:</p>
 <ul>
-<li><code>./pom.xml</code></li>
-<li><code>./src/main/java/com/mycompany/maven/SimpleReport.java</code></li></ul>
+
+<li>
+<p><code>./pom.xml</code></p></li>
+<li>
+<p><code>./src/main/java/com/mycompany/maven/SimpleReport.java</code></p></li>
+</ul>
 <p>The below examples can be copied and pasted as a template.</p><section>
-<h3>./pom.xml</h3>
-<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;
+<h4>./pom.xml</h4>
+
+<div class="source"><pre class="prettyprint linenums"><code>&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;
@@ -287,9 +326,11 @@ Bertrand Martin" />
         &lt;/plugins&gt;
     &lt;/build&gt;
 
-&lt;/project&gt;</pre></div></section><section>
-<h3>./src/main/java/com/mycompany/maven/SimpleReport.java</h3>
-<div class="source"><pre class="prettyprint linenums">package com.mycompany.maven;
+&lt;/project&gt;
+</code></pre></div></section><section>
+<h4>./src/main/java/com/mycompany/maven/SimpleReport.java</h4>
+
+<div class="source"><pre class="prettyprint linenums"><code>package com.mycompany.maven;
 
 import java.util.Locale;
 
@@ -386,19 +427,26 @@ public class SimpleReport extends Abstra
 
     }
 
-}</pre></div></section><section>
-<h3>Building the Simple Plugin</h3>
+}
+</code></pre></div></section><section>
+<h4>Building the Simple Plugin</h4>
 <p>Building the plugin is done by executing the below command in the root directory of the plugin project:</p>
-<div>
-<pre>$ mvn install</pre></div>
+
+<div class="source"><pre class="prettyprint linenums"><code>$ mvn install
+</code></pre></div>
 <p>This command will:</p>
 <ul>
-<li>compile your code</li>
-<li>produces the plugin JAR artifact (<code>./target/simple-maven-plugin-1.0-SNAPSHOT.jar</code>)</li>
-<li>copy the artifact to your local repository so that it can be &quot;consumed&quot; by other projects (which is the purpose of a plugin, right?).</li></ul>
+
+<li>
+<p>compile your code</p></li>
+<li>
+<p>produces the plugin JAR artifact (<code>./target/simple-maven-plugin-1.0-SNAPSHOT.jar</code>)</p></li>
+<li>
+<p>copy the artifact to your local repository so that it can be &#x201c;consumed&#x201d; by other projects (which is the purpose of a plugin, right?).</p></li>
+</ul>
 <p>To make sure everything went well and is properly declared, you can now execute the below command in any other Maven project directory:</p>
-<div>
-<pre>$ mvn com.mycompany.maven:simple-maven-plugin:1.0-SNAPSHOT:help
+
+<div class="source"><pre class="prettyprint linenums"><code>$ mvn com.mycompany.maven:simple-maven-plugin:1.0-SNAPSHOT:help
 
 [INFO] --- simple-maven-plugin:1.0-SNAPSHOT:help (default-cli) @ hardware-connectors ---
 [INFO] Simple Plugin 1.0-SNAPSHOT
@@ -419,10 +467,12 @@ simple:simple
 
 [INFO] ------------------------------------------------------------------------
 [INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------</pre></div></section><section>
-<h3>Invoking the Simple Plugin</h3>
-<p>To invoke the <i>report Mojo</i> of our plugin in another Maven project, we just need to declare the plugin in the <a href="/plugins/maven-site-plugin/examples/configuring-reports.html"><code>&lt;reporting&gt;</code></a> section of its <code>pom.xml</code> as in the example below:</p>
-<div class="source"><pre class="prettyprint linenums">&lt;project&gt;
+[INFO] ------------------------------------------------------------------------
+</code></pre></div></section><section>
+<h4>Invoking the Simple Plugin</h4>
+<p>To invoke the <em>report Mojo</em> of our plugin in another Maven project, we just need to declare the plugin in the <a href="/plugins/maven-site-plugin/examples/configuring-reports.html"><code>\&lt;reporting\&gt;</code></a> section of its <code>pom.xml</code> as in the example below:</p>
+
+<div class="source"><pre class="prettyprint linenums"><code>&lt;project&gt;
   ...
   &lt;reporting&gt;
     &lt;plugins&gt;
@@ -434,32 +484,48 @@ simple:simple
     &lt;/plugins&gt;
   &lt;/reporting&gt;
   ...
-&lt;/project&gt;</pre></div>
-<p>Note: When no specific report is specified, all of the <i>Mojos</i> in the plugin, that are declared as &quot;reporting&quot; will be executed. <a href="/plugins/maven-site-plugin/examples/configuring-reports.html">More information about configuring reports</a>.</p></section></section><section>
-<h2>More Information</h2><section>
-<h3>The Doxia Sink API</h3>
+&lt;/project&gt;
+</code></pre></div>
+<p>Note: When no specific report is specified, all of the <em>Mojos</em> in the plugin, that are declared as &#x201c;reporting&#x201d; will be executed. <a href="/plugins/maven-site-plugin/examples/configuring-reports.html">More information about configuring reports</a>.</p></section></section><section>
+<h3>More Information</h3><section>
+<h4>The Doxia Sink API</h4>
 <p>In your <code>executeReport()</code> method, you will leverage the <a href="/doxia/doxia/doxia-sink-api/">Doxia Sink API</a> to add elements to the report document.</p>
 <p>You will use the <a href="/doxia/doxia/doxia-sink-api/apidocs/org/apache/maven/doxia/sink/Sink.html"><code>Sink</code></a> object associated to the report:</p>
-<div class="source"><pre class="prettyprint linenums">Sink sink = getSink();</pre></div>
+
+<div class="source"><pre class="prettyprint linenums"><code>Sink sink = getSink();
+</code></pre></div>
 <p>This object allows you to append new elements to the report document (initially empty). Unlike some DOM manipulation APIs, you cannot insert elements in already existing elements, or remove elements.</p>
 <p>The elements that you append to the document will look familiar if you have basic knowledge of HTML. Most of the elements have opening and closing tags, like <code>sink.body()</code> (opening) and <code>sink.body_()</code> (closing).</p>
 <ul>
-<li><code>sink.head()</code> and <code>sink.head_()</code></li>
-<li><code>sink.paragraph()</code> and <code>sink.paragraph_()</code></li>
-<li><code>sink.section1()</code> and <code>sink.section1_()</code></li>
-<li><code>sink.bold()</code> and <code>sink.bold_()</code></li>
-<li>etc.</li></ul>
-<p><b>Do not forget to close elements!</b></p>
+
+<li>
+<p><code>sink.head()</code> and <code>sink.head_()</code></p></li>
+<li>
+<p><code>sink.paragraph()</code> and <code>sink.paragraph_()</code></p></li>
+<li>
+<p><code>sink.section1()</code> and <code>sink.section1_()</code></p></li>
+<li>
+<p><code>sink.bold()</code> and <code>sink.bold_()</code></p></li>
+<li>
+<p>etc.</p></li>
+</ul>
+<p><strong>Do not forget to close elements!</strong></p>
 <p>At the very least, a document should include the following:</p>
 <ul>
-<li>Head and title (<code>sink.head()</code> and <code>sink.title()</code>)</li>
-<li>Body (<code>sink.body()</code>)</li>
-<li>Section 1 with title (<code>sink.section1()</code> and <code>sink.sectionTitle1()</code>)</li></ul>
-<p>The <a href="/doxia/doxia/doxia-sink-api/apidocs/org/apache/maven/doxia/sink/Sink.html"><code>Sink</code></a> object allows you to add raw text with the <i>rawText()</i> method. More precisely, it allows you to add raw HTML code into the document for full flexibility. However, you should limit the usage of this method as you may add elements that are not supported by non-HTML renderers (like <a href="/plugins/maven-pdf-plugin/"><code>maven-pdf-site</code></a>).</p>
-<p>The Doxia Sink API allows you to specify <a href="/doxia/doxia/doxia-sink-api/apidocs/org/apache/maven/doxia/sink/SinkEventAttributes.html"><i>SinkEventAttributes</i></a> to each element, i.e. HTML properties, notably the class and the ID of an object, which allows for easy customization with an appropriate CSS (either provided by the specified Maven Skin, or by the project itself).</p></section><section>
-<h3>Creating more than one document</h3>
-<p>You may need to create not just one HTML file, but several of them (like Javadoc produces one HTML file for each Java class). To do so, you will need to get a new <i>Sink</i> for each HTML file you need to produce. This is achieved by using the <a href="/doxia/doxia/doxia-sink-api/apidocs/org/apache/maven/doxia/sink/SinkFactory.html"><code>SinkFactory</code></a> object that you can easily obtain with the <a href="/shared/maven-reporting-impl/apidocs/org/apache/maven/reporting/AbstractMavenReport.html#getSinkFactory"><code>getSinkFactory()</code></a> method of your <a href="/shared/maven-reporting-impl/apidocs/org/apache/maven/reporting/AbstractMavenReport.html"><code>AbstractMavenReport</code></a> instance, as in the example below.</p>
-<div class="source"><pre class="prettyprint linenums">public class SimpleReport extends AbstractMavenReport {
+
+<li>
+<p>Head and title (<code>sink.head()</code> and <code>sink.title()</code>)</p></li>
+<li>
+<p>Body (<code>sink.body()</code>)</p></li>
+<li>
+<p>Section 1 with title (<code>sink.section1()</code> and <code>sink.sectionTitle1()</code>)</p></li>
+</ul>
+<p>The <a href="/doxia/doxia/doxia-sink-api/apidocs/org/apache/maven/doxia/sink/Sink.html"><code>Sink</code></a> object allows you to add raw text with the <em>rawText()</em> method. More precisely, it allows you to add raw HTML code into the document for full flexibility. However, you should limit the usage of this method as you may add elements that are not supported by non-HTML renderers (like <a href="/plugins/maven-pdf-plugin/"><code>maven-pdf-site</code></a>).</p>
+<p>The Doxia Sink API allows you to specify <a href="/doxia/doxia/doxia-sink-api/apidocs/org/apache/maven/doxia/sink/SinkEventAttributes.html"><em>SinkEventAttributes</em></a> to each element, i.e. HTML properties, notably the class and the ID of an object, which allows for easy customization with an appropriate CSS (either provided by the specified Maven Skin, or by the project itself).</p></section><section>
+<h4>Creating more than one document</h4>
+<p>You may need to create not just one HTML file, but several of them (like Javadoc produces one HTML file for each Java class). To do so, you will need to get a new <em>Sink</em> for each HTML file you need to produce. This is achieved by using the <a href="/doxia/doxia/doxia-sink-api/apidocs/org/apache/maven/doxia/sink/SinkFactory.html"><code>SinkFactory</code></a> object that you can easily obtain with the <a href="/shared/maven-reporting-impl/apidocs/org/apache/maven/reporting/AbstractMavenReport.html#getSinkFactory"><code>getSinkFactory()</code></a> method of your <a href="/shared/maven-reporting-impl/apidocs/org/apache/maven/reporting/AbstractMavenReport.html"><code>AbstractMavenReport</code></a> instance, as in the example below.</p>
+
+<div class="source"><pre class="prettyprint linenums"><code>public class SimpleReport extends AbstractMavenReport {
 
   ...
 
@@ -489,15 +555,15 @@ simple:simple
     otherSink.head();
     otherSink.title();
     otherSink.text(&quot;The Other Report&quot;);
-    ...</pre></div>
+    ...
+</code></pre></div>
 <p>The above example will create a <code>other-report.html</code> HTML file along with <code>simple-report.html</code>.</p>
-<p>Note: Despite the fact that you will be creating additional HTML files, the Velocity variable <code>$currentFileName</code> passed to the <code>site.vm</code> script of the Maven Skin will keep the name of the original report (i.e. the result of your <i>getOutputName()</i> method). <a href="/doxia/doxia-sitetools/doxia-site-renderer/">More information about the Velocity variables</a>.</p></section></section><section>
-<h2>Resources</h2>
-<ol style="list-style-type: decimal">
-<li><a href="./guide-java-plugin-development.html">Guide to Developing Java Plugins</a>: Starting point, since a reporting plugin is a plugin...</li>
-<li><a href="/shared/maven-reporting-api/">Maven Reporting API</a>: The Reporting API to implement when a Mojo provides reporting for site.</li>
-<li><a href="/shared/maven-reporting-impl/">Maven Reporting Implementation</a>: Base implementation of both Reporting API and Plugin API.</li>
-<li><a href="/doxia/doxia/doxia-sink-api/">Doxia Sink API</a>: API to generate content.</li></ol></section></section>
+<p>Note: Despite the fact that you will be creating additional HTML files, the Velocity variable <code>$currentFileName</code> passed to the <code>site.vm</code> script of the Maven Skin will keep the name of the original report (i.e. the result of your <em>getOutputName()</em> method). <a href="/doxia/doxia-sitetools/doxia-site-renderer/">More information about the Velocity variables</a>.</p></section></section><section>
+<h3>Resources</h3>
+<p>1 <a href="./guide-java-plugin-development.html">Guide to Developing Java Plugins</a>: Starting point, since a reporting plugin is a plugin&#x2026;</p>
+<p>1 <a href="/shared/maven-reporting-api/">Maven Reporting API</a>: The Reporting API to implement when a Mojo provides reporting for site.</p>
+<p>1 <a href="/shared/maven-reporting-impl/">Maven Reporting Implementation</a>: Base implementation of both Reporting API and Plugin API.</p>
+<p>1 <a href="/doxia/doxia/doxia-sink-api/">Doxia Sink API</a>: API to generate content.</p></section></section></section>
         </main>
       </div>
     </div>

Modified: maven/website/content/ide.html
==============================================================================
--- maven/website/content/ide.html (original)
+++ maven/website/content/ide.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/ide.md at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/ide.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 ">Apache Maven IDE Integration <a href="https://github.com/apache/maven-site/tree/master/content/markdown/ide.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/index.html
==============================================================================
--- maven/website/content/index.html (original)
+++ maven/website/content/index.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/xdoc/index.xml.vm at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/xdoc/index.xml.vm at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -50,7 +50,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 ">Welcome to Apache Maven <a href="https://github.com/apache/maven-site/tree/master/content/xdoc/index.xml.vm"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/install.html
==============================================================================
--- maven/website/content/install.html (original)
+++ maven/website/content/install.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/install.md.vm at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/install.md.vm at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 ">Installing Apache Maven <a href="https://github.com/apache/maven-site/tree/master/content/markdown/install.md.vm"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/issue-management.html
==============================================================================
--- maven/website/content/issue-management.html (original)
+++ maven/website/content/issue-management.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/issue-management.md at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/issue-management.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 ">Overview <a href="https://github.com/apache/maven-site/tree/master/content/markdown/issue-management.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/mailing-lists.html
==============================================================================
--- maven/website/content/mailing-lists.html (original)
+++ maven/website/content/mailing-lists.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.4.1:mailing-lists at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.4.1:mailing-lists at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 ">Project Mailing Lists</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/maven-1.x-eol.html
==============================================================================
--- maven/website/content/maven-1.x-eol.html (original)
+++ maven/website/content/maven-1.x-eol.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-1.x-eol.md at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-1.x-eol.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 ">End Of Life Apache Maven 1.x <a href="https://github.com/apache/maven-site/tree/master/content/markdown/maven-1.x-eol.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/maven-2.x-eol.html
==============================================================================
--- maven/website/content/maven-2.x-eol.html (original)
+++ maven/website/content/maven-2.x-eol.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-2.x-eol.md at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-2.x-eol.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 ">End Of Life Apache Maven 2.x <a href="https://github.com/apache/maven-site/tree/master/content/markdown/maven-2.x-eol.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/maven-ci-friendly.html
==============================================================================
--- maven/website/content/maven-ci-friendly.html (original)
+++ maven/website/content/maven-ci-friendly.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-ci-friendly.md at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-ci-friendly.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 CI Friendly Versions <a href="https://github.com/apache/maven-site/tree/master/content/markdown/maven-ci-friendly.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/maven-conventions.html
==============================================================================
--- maven/website/content/maven-conventions.html (original)
+++ maven/website/content/maven-conventions.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-conventions.md at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-conventions.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 Conventions <a href="https://github.com/apache/maven-site/tree/master/content/markdown/maven-conventions.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/maven-features.html
==============================================================================
--- maven/website/content/maven-features.html (original)
+++ maven/website/content/maven-features.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/apt/maven-features.apt at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-features.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -48,8 +48,8 @@
           <ul class="breadcrumb">
       <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 Features <a href="https://github.com/apache/maven-site/tree/master/content/apt/maven-features.apt"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+    <li class="active ">Maven Features <a href="https://github.com/apache/maven-site/tree/master/content/markdown/maven-features.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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>
@@ -123,22 +123,55 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h1>Feature Summary</h1>
+<!--
+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.
+-->
+<section><section>
+<h2>Feature Summary</h2>
 <p>The following are the key features of Maven in a nutshell:</p>
 <ul>
-<li>Simple project setup that follows best practices - get a new project or module started in seconds</li>
-<li>Consistent usage across all projects - means no ramp up time for new developers coming onto a project</li>
-<li>Superior dependency management including automatic updating, dependency closures (also known as transitive dependencies)</li>
-<li>Able to easily work with multiple projects at the same time</li>
-<li>A <a href="/repository/">large and growing repository of libraries and metadata</a> to use out of the box, and arrangements in place with the largest Open Source projects for real-time availability of their latest releases</li>
-<li>Extensible, with the ability to easily <a href="/plugin-developers/">write plugins</a> in Java or scripting languages</li>
-<li>Instant access to new features with little or no extra configuration</li>
-<li>Ant tasks for dependency management and deployment outside of Maven</li>
-<li>Model based builds: Maven is able to build any number of projects into predefined output types such as a JAR, WAR, or distribution based on metadata about the project, without the need to do any scripting in most cases.</li>
-<li>Coherent site of project information: Using the same metadata as for the build process, Maven is able to generate a web site or PDF including any documentation you care to add, and adds to that standard reports about the state of development of the project. Examples of this information can be seen at the bottom of the left-hand navigation of this site under the &quot;Project Information&quot; and &quot;Project Reports&quot; submenus.</li>
-<li>Release management and distribution publication: Without much additional configuration, Maven will integrate with your source control system (such as Subversion or Git) and manage the release of a project based on a certain tag. It can also publish this to a distribution location for use by other projects. Maven is able to publish individual outputs such as a JAR, an archive including other dependencies and documentation, or as a source distribution.</li>
-<li>Dependency management: Maven encourages the use of a central repository of JARs and other dependencies. Maven comes with a mechanism that your project's clients can use to download any JARs required for building your project from a central JAR repository much like Perl's CPAN. This allows users of Maven to reuse JARs across projects and encourages communication between projects to ensure that backward compatibility issues are dealt with.</li></ul></section>
+
+<li>
+<p>Simple project setup that follows best practices - get a new project or module started in seconds</p></li>
+<li>
+<p>Consistent usage across all projects - means no ramp up time for new developers coming onto a project</p></li>
+<li>
+<p>Superior dependency management including automatic updating, dependency closures (also known as transitive dependencies)</p></li>
+<li>
+<p>Able to easily work with multiple projects at the same time</p></li>
+<li>
+<p>A <a href="/repository/">large and growing repository of libraries and metadata</a> to use out of the box, and arrangements in place with the largest Open Source projects for real-time availability of their latest releases</p></li>
+<li>
+<p>Extensible, with the ability to easily <a href="/plugin-developers/">write plugins</a> in Java or scripting languages</p></li>
+<li>
+<p>Instant access to new features with little or no extra configuration</p></li>
+<li>
+<p>Ant tasks for dependency management and deployment outside of Maven</p></li>
+<li>
+<p>Model based builds: Maven is able to build any number of projects into predefined output types such as a JAR, WAR, or distribution based on metadata about the project, without the need to do any scripting in most cases.</p></li>
+<li>
+<p>Coherent site of project information: Using the same metadata as for the build process, Maven is able to generate a web site or PDF including any documentation you care to add, and adds to that standard reports about the state of development of the project. Examples of this information can be seen at the bottom of the left-hand navigation of this site under the &#x201c;Project Information&#x201d; and &#x201c;Project Reports&#x201d; submenus.</p></li>
+<li>
+<p>Release management and distribution publication: Without much additional configuration, Maven will integrate with your source control system (such as Subversion or Git) and manage the release of a project based on a certain tag. It can also publish this to a distribution location for use by other projects. Maven is able to publish individual outputs such as a JAR, an archive including other dependencies and documentation, or as a source distribution.</p></li>
+<li>
+<p>Dependency management: Maven encourages the use of a central repository of JARs and other dependencies. Maven comes with a mechanism that your project's clients can use to download any JARs required for building your project from a central JAR repository much like Perl's CPAN. This allows users of Maven to reuse JARs across projects and encourages communication between projects to ensure that backward compatibility issues are dealt with.</p></li>
+</ul><!--  this needs to be greatly expanded and is too detailed here ... jvz -->
+</section></section>
         </main>
       </div>
     </div>

Modified: maven/website/content/maven-jsr330.html
==============================================================================
--- maven/website/content/maven-jsr330.html (original)
+++ maven/website/content/maven-jsr330.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-jsr330.md at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-jsr330.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 & JSR-330 <a href="https://github.com/apache/maven-site/tree/master/content/markdown/maven-jsr330.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/maven-logging.html
==============================================================================
--- maven/website/content/maven-logging.html (original)
+++ maven/website/content/maven-logging.html Thu Feb  9 00:34:05 2023
@@ -2,7 +2,7 @@
 
 
 <!--
- | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-logging.md at 2023-02-08
+ | Generated by Apache Maven Doxia Site Renderer 2.0.0-M4 from content/markdown/maven-logging.md at 2023-02-09
  | Rendered using Apache Maven Fluido Skin 1.11.1
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="">
@@ -47,7 +47,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 3.1.x logging <a href="https://github.com/apache/maven-site/tree/master/content/markdown/maven-logging.md"><img src="./images/accessories-text-editor.png" title="Edit" /></a></li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-08</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2023-02-09</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/maven-site-1.0-site.jar
==============================================================================
Binary files - no diff available.