Modified: 
websites/production/commons/content/proper/commons-csv/apidocs/src-html/org/apache/commons/csv/CSVRecord.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-csv/apidocs/src-html/org/apache/commons/csv/CSVRecord.html
 (original)
+++ 
websites/production/commons/content/proper/commons-csv/apidocs/src-html/org/apache/commons/csv/CSVRecord.html
 Thu Feb  2 12:12:49 2023
@@ -31,7 +31,7 @@
 <span class="sourceLineNo">023</span>import java.util.LinkedHashMap;<a 
name="line.23"></a>
 <span class="sourceLineNo">024</span>import java.util.List;<a 
name="line.24"></a>
 <span class="sourceLineNo">025</span>import java.util.Map;<a 
name="line.25"></a>
-<span class="sourceLineNo">026</span>import java.util.Objects;<a 
name="line.26"></a>
+<span class="sourceLineNo">026</span>import java.util.stream.Collectors;<a 
name="line.26"></a>
 <span class="sourceLineNo">027</span>import java.util.stream.Stream;<a 
name="line.27"></a>
 <span class="sourceLineNo">028</span><a name="line.28"></a>
 <span class="sourceLineNo">029</span>/**<a name="line.29"></a>
@@ -81,7 +81,7 @@
 <span class="sourceLineNo">073</span>     * @return the String at the given 
enum String<a name="line.73"></a>
 <span class="sourceLineNo">074</span>     */<a name="line.74"></a>
 <span class="sourceLineNo">075</span>    public String get(final Enum&lt;?&gt; 
e) {<a name="line.75"></a>
-<span class="sourceLineNo">076</span>        return get(Objects.toString(e, 
null));<a name="line.76"></a>
+<span class="sourceLineNo">076</span>        return get(e == null ? null : 
e.name());<a name="line.76"></a>
 <span class="sourceLineNo">077</span>    }<a name="line.77"></a>
 <span class="sourceLineNo">078</span><a name="line.78"></a>
 <span class="sourceLineNo">079</span>    /**<a name="line.79"></a>
@@ -278,70 +278,81 @@
 <span class="sourceLineNo">270</span>        if (getHeaderMapRaw() == null) 
{<a name="line.270"></a>
 <span class="sourceLineNo">271</span>            return map;<a 
name="line.271"></a>
 <span class="sourceLineNo">272</span>        }<a name="line.272"></a>
-<span class="sourceLineNo">273</span>        
getHeaderMapRaw().entrySet().forEach(entry -&gt; {<a name="line.273"></a>
-<span class="sourceLineNo">274</span>            final int col = 
entry.getValue().intValue();<a name="line.274"></a>
-<span class="sourceLineNo">275</span>            if (col &lt; values.length) 
{<a name="line.275"></a>
-<span class="sourceLineNo">276</span>                map.put(entry.getKey(), 
values[col]);<a name="line.276"></a>
-<span class="sourceLineNo">277</span>            }<a name="line.277"></a>
-<span class="sourceLineNo">278</span>        });<a name="line.278"></a>
-<span class="sourceLineNo">279</span>        return map;<a name="line.279"></a>
-<span class="sourceLineNo">280</span>    }<a name="line.280"></a>
-<span class="sourceLineNo">281</span><a name="line.281"></a>
-<span class="sourceLineNo">282</span>    /**<a name="line.282"></a>
-<span class="sourceLineNo">283</span>     * Returns the number of values in 
this record.<a name="line.283"></a>
-<span class="sourceLineNo">284</span>     *<a name="line.284"></a>
-<span class="sourceLineNo">285</span>     * @return the number of values.<a 
name="line.285"></a>
-<span class="sourceLineNo">286</span>     */<a name="line.286"></a>
-<span class="sourceLineNo">287</span>    public int size() {<a 
name="line.287"></a>
-<span class="sourceLineNo">288</span>        return values.length;<a 
name="line.288"></a>
-<span class="sourceLineNo">289</span>    }<a name="line.289"></a>
-<span class="sourceLineNo">290</span><a name="line.290"></a>
-<span class="sourceLineNo">291</span>    /**<a name="line.291"></a>
-<span class="sourceLineNo">292</span>     * Returns a sequential ordered 
stream whose elements are the values.<a name="line.292"></a>
-<span class="sourceLineNo">293</span>     *<a name="line.293"></a>
-<span class="sourceLineNo">294</span>     * @return the new stream.<a 
name="line.294"></a>
-<span class="sourceLineNo">295</span>     * @since 1.9.0<a name="line.295"></a>
-<span class="sourceLineNo">296</span>     */<a name="line.296"></a>
-<span class="sourceLineNo">297</span>    public Stream&lt;String&gt; stream() 
{<a name="line.297"></a>
-<span class="sourceLineNo">298</span>        return Stream.of(values);<a 
name="line.298"></a>
-<span class="sourceLineNo">299</span>    }<a name="line.299"></a>
-<span class="sourceLineNo">300</span><a name="line.300"></a>
-<span class="sourceLineNo">301</span>    /**<a name="line.301"></a>
-<span class="sourceLineNo">302</span>     * Converts the values to a List.<a 
name="line.302"></a>
-<span class="sourceLineNo">303</span>     *<a name="line.303"></a>
-<span class="sourceLineNo">304</span>     * @return a new List<a 
name="line.304"></a>
-<span class="sourceLineNo">305</span>     * @since 1.9.0<a name="line.305"></a>
-<span class="sourceLineNo">306</span>     */<a name="line.306"></a>
-<span class="sourceLineNo">307</span>    public List&lt;String&gt; toList() 
{<a name="line.307"></a>
-<span class="sourceLineNo">308</span>        return Arrays.asList(values);<a 
name="line.308"></a>
-<span class="sourceLineNo">309</span>    }<a name="line.309"></a>
-<span class="sourceLineNo">310</span><a name="line.310"></a>
-<span class="sourceLineNo">311</span>    /**<a name="line.311"></a>
-<span class="sourceLineNo">312</span>     * Copies this record into a new Map 
of header name to record value.<a name="line.312"></a>
-<span class="sourceLineNo">313</span>     *<a name="line.313"></a>
-<span class="sourceLineNo">314</span>     * @return A new Map. The map is 
empty if the record has no headers.<a name="line.314"></a>
-<span class="sourceLineNo">315</span>     */<a name="line.315"></a>
-<span class="sourceLineNo">316</span>    public Map&lt;String, String&gt; 
toMap() {<a name="line.316"></a>
-<span class="sourceLineNo">317</span>        return putIn(new 
LinkedHashMap&lt;String, String&gt;(values.length));<a name="line.317"></a>
-<span class="sourceLineNo">318</span>    }<a name="line.318"></a>
-<span class="sourceLineNo">319</span><a name="line.319"></a>
-<span class="sourceLineNo">320</span>    /**<a name="line.320"></a>
-<span class="sourceLineNo">321</span>     * Returns a string representation of 
the contents of this record. The result is constructed by comment, mapping,<a 
name="line.321"></a>
-<span class="sourceLineNo">322</span>     * recordNumber and by passing the 
internal values array to {@link Arrays#toString(Object[])}.<a 
name="line.322"></a>
-<span class="sourceLineNo">323</span>     *<a name="line.323"></a>
-<span class="sourceLineNo">324</span>     * @return a String representation of 
this record.<a name="line.324"></a>
-<span class="sourceLineNo">325</span>     */<a name="line.325"></a>
-<span class="sourceLineNo">326</span>    @Override<a name="line.326"></a>
-<span class="sourceLineNo">327</span>    public String toString() {<a 
name="line.327"></a>
-<span class="sourceLineNo">328</span>        return "CSVRecord [comment='" + 
comment + "', recordNumber=" + recordNumber + ", values=" +<a 
name="line.328"></a>
-<span class="sourceLineNo">329</span>            Arrays.toString(values) + 
"]";<a name="line.329"></a>
-<span class="sourceLineNo">330</span>    }<a name="line.330"></a>
-<span class="sourceLineNo">331</span><a name="line.331"></a>
-<span class="sourceLineNo">332</span>    String[] values() {<a 
name="line.332"></a>
-<span class="sourceLineNo">333</span>        return values;<a 
name="line.333"></a>
-<span class="sourceLineNo">334</span>    }<a name="line.334"></a>
-<span class="sourceLineNo">335</span><a name="line.335"></a>
-<span class="sourceLineNo">336</span>}<a name="line.336"></a>
+<span class="sourceLineNo">273</span>        getHeaderMapRaw().forEach((key, 
value) -&gt; {<a name="line.273"></a>
+<span class="sourceLineNo">274</span>            if (value &lt; values.length) 
{<a name="line.274"></a>
+<span class="sourceLineNo">275</span>                map.put(key, 
values[value]);<a name="line.275"></a>
+<span class="sourceLineNo">276</span>            }<a name="line.276"></a>
+<span class="sourceLineNo">277</span>        });<a name="line.277"></a>
+<span class="sourceLineNo">278</span>        return map;<a name="line.278"></a>
+<span class="sourceLineNo">279</span>    }<a name="line.279"></a>
+<span class="sourceLineNo">280</span><a name="line.280"></a>
+<span class="sourceLineNo">281</span>    /**<a name="line.281"></a>
+<span class="sourceLineNo">282</span>     * Returns the number of values in 
this record.<a name="line.282"></a>
+<span class="sourceLineNo">283</span>     *<a name="line.283"></a>
+<span class="sourceLineNo">284</span>     * @return the number of values.<a 
name="line.284"></a>
+<span class="sourceLineNo">285</span>     */<a name="line.285"></a>
+<span class="sourceLineNo">286</span>    public int size() {<a 
name="line.286"></a>
+<span class="sourceLineNo">287</span>        return values.length;<a 
name="line.287"></a>
+<span class="sourceLineNo">288</span>    }<a name="line.288"></a>
+<span class="sourceLineNo">289</span><a name="line.289"></a>
+<span class="sourceLineNo">290</span>    /**<a name="line.290"></a>
+<span class="sourceLineNo">291</span>     * Returns a sequential ordered 
stream whose elements are the values.<a name="line.291"></a>
+<span class="sourceLineNo">292</span>     *<a name="line.292"></a>
+<span class="sourceLineNo">293</span>     * @return the new stream.<a 
name="line.293"></a>
+<span class="sourceLineNo">294</span>     * @since 1.9.0<a name="line.294"></a>
+<span class="sourceLineNo">295</span>     */<a name="line.295"></a>
+<span class="sourceLineNo">296</span>    public Stream&lt;String&gt; stream() 
{<a name="line.296"></a>
+<span class="sourceLineNo">297</span>        return Stream.of(values);<a 
name="line.297"></a>
+<span class="sourceLineNo">298</span>    }<a name="line.298"></a>
+<span class="sourceLineNo">299</span><a name="line.299"></a>
+<span class="sourceLineNo">300</span>    /**<a name="line.300"></a>
+<span class="sourceLineNo">301</span>     * Converts the values to a new 
List.<a name="line.301"></a>
+<span class="sourceLineNo">302</span>     * &lt;p&gt;<a name="line.302"></a>
+<span class="sourceLineNo">303</span>     * Editing the list does not update 
this instance.<a name="line.303"></a>
+<span class="sourceLineNo">304</span>     * &lt;/p&gt;<a name="line.304"></a>
+<span class="sourceLineNo">305</span>     *<a name="line.305"></a>
+<span class="sourceLineNo">306</span>     * @return a new List<a 
name="line.306"></a>
+<span class="sourceLineNo">307</span>     * @since 1.9.0<a name="line.307"></a>
+<span class="sourceLineNo">308</span>     */<a name="line.308"></a>
+<span class="sourceLineNo">309</span>    public List&lt;String&gt; toList() 
{<a name="line.309"></a>
+<span class="sourceLineNo">310</span>        return 
stream().collect(Collectors.toList());<a name="line.310"></a>
+<span class="sourceLineNo">311</span>    }<a name="line.311"></a>
+<span class="sourceLineNo">312</span><a name="line.312"></a>
+<span class="sourceLineNo">313</span>    /**<a name="line.313"></a>
+<span class="sourceLineNo">314</span>     * Copies this record into a new Map 
of header name to record value.<a name="line.314"></a>
+<span class="sourceLineNo">315</span>     * &lt;p&gt;<a name="line.315"></a>
+<span class="sourceLineNo">316</span>     * Editing the map does not update 
this instance.<a name="line.316"></a>
+<span class="sourceLineNo">317</span>     * &lt;/p&gt;<a name="line.317"></a>
+<span class="sourceLineNo">318</span>     *<a name="line.318"></a>
+<span class="sourceLineNo">319</span>     * @return A new Map. The map is 
empty if the record has no headers.<a name="line.319"></a>
+<span class="sourceLineNo">320</span>     */<a name="line.320"></a>
+<span class="sourceLineNo">321</span>    public Map&lt;String, String&gt; 
toMap() {<a name="line.321"></a>
+<span class="sourceLineNo">322</span>        return putIn(new 
LinkedHashMap&lt;&gt;(values.length));<a name="line.322"></a>
+<span class="sourceLineNo">323</span>    }<a name="line.323"></a>
+<span class="sourceLineNo">324</span><a name="line.324"></a>
+<span class="sourceLineNo">325</span>    /**<a name="line.325"></a>
+<span class="sourceLineNo">326</span>     * Returns a string representation of 
the contents of this record. The result is constructed by comment, mapping,<a 
name="line.326"></a>
+<span class="sourceLineNo">327</span>     * recordNumber and by passing the 
internal values array to {@link Arrays#toString(Object[])}.<a 
name="line.327"></a>
+<span class="sourceLineNo">328</span>     *<a name="line.328"></a>
+<span class="sourceLineNo">329</span>     * @return a String representation of 
this record.<a name="line.329"></a>
+<span class="sourceLineNo">330</span>     */<a name="line.330"></a>
+<span class="sourceLineNo">331</span>    @Override<a name="line.331"></a>
+<span class="sourceLineNo">332</span>    public String toString() {<a 
name="line.332"></a>
+<span class="sourceLineNo">333</span>        return "CSVRecord [comment='" + 
comment + "', recordNumber=" + recordNumber + ", values=" +<a 
name="line.333"></a>
+<span class="sourceLineNo">334</span>            Arrays.toString(values) + 
"]";<a name="line.334"></a>
+<span class="sourceLineNo">335</span>    }<a name="line.335"></a>
+<span class="sourceLineNo">336</span><a name="line.336"></a>
+<span class="sourceLineNo">337</span>    /**<a name="line.337"></a>
+<span class="sourceLineNo">338</span>     * Gets the values for this record. 
This is not a copy.<a name="line.338"></a>
+<span class="sourceLineNo">339</span>     *<a name="line.339"></a>
+<span class="sourceLineNo">340</span>     * @return the values for this 
record.<a name="line.340"></a>
+<span class="sourceLineNo">341</span>     * @since 1.10.0<a 
name="line.341"></a>
+<span class="sourceLineNo">342</span>     */<a name="line.342"></a>
+<span class="sourceLineNo">343</span>    public String[] values() {<a 
name="line.343"></a>
+<span class="sourceLineNo">344</span>        return values;<a 
name="line.344"></a>
+<span class="sourceLineNo">345</span>    }<a name="line.345"></a>
+<span class="sourceLineNo">346</span><a name="line.346"></a>
+<span class="sourceLineNo">347</span>}<a name="line.347"></a>
 
 
 

Added: 
websites/production/commons/content/proper/commons-csv/apidocs/src-html/org/apache/commons/csv/DuplicateHeaderMode.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-csv/apidocs/src-html/org/apache/commons/csv/DuplicateHeaderMode.html
 (added)
+++ 
websites/production/commons/content/proper/commons-csv/apidocs/src-html/org/apache/commons/csv/DuplicateHeaderMode.html
 Thu Feb  2 12:12:49 2023
@@ -0,0 +1,114 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+<head>
+<title>Source code</title>
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
+</head>
+<body>
+<div class="sourceContainer">
+<pre><span class="sourceLineNo">001</span>/*<a name="line.1"></a>
+<span class="sourceLineNo">002</span> * Licensed to the Apache Software 
Foundation (ASF) under one or more<a name="line.2"></a>
+<span class="sourceLineNo">003</span> * contributor license agreements.  See 
the NOTICE file distributed with<a name="line.3"></a>
+<span class="sourceLineNo">004</span> * this work for additional information 
regarding copyright ownership.<a name="line.4"></a>
+<span class="sourceLineNo">005</span> * The ASF licenses this file to You 
under the Apache License, Version 2.0<a name="line.5"></a>
+<span class="sourceLineNo">006</span> * (the "License"); you may not use this 
file except in compliance with<a name="line.6"></a>
+<span class="sourceLineNo">007</span> * the License.  You may obtain a copy of 
the License at<a name="line.7"></a>
+<span class="sourceLineNo">008</span> *<a name="line.8"></a>
+<span class="sourceLineNo">009</span> *      
http://www.apache.org/licenses/LICENSE-2.0<a name="line.9"></a>
+<span class="sourceLineNo">010</span> *<a name="line.10"></a>
+<span class="sourceLineNo">011</span> * Unless required by applicable law or 
agreed to in writing, software<a name="line.11"></a>
+<span class="sourceLineNo">012</span> * distributed under the License is 
distributed on an "AS IS" BASIS,<a name="line.12"></a>
+<span class="sourceLineNo">013</span> * WITHOUT WARRANTIES OR CONDITIONS OF 
ANY KIND, either express or implied.<a name="line.13"></a>
+<span class="sourceLineNo">014</span> * See the License for the specific 
language governing permissions and<a name="line.14"></a>
+<span class="sourceLineNo">015</span> * limitations under the License.<a 
name="line.15"></a>
+<span class="sourceLineNo">016</span> */<a name="line.16"></a>
+<span class="sourceLineNo">017</span><a name="line.17"></a>
+<span class="sourceLineNo">018</span>package org.apache.commons.csv;<a 
name="line.18"></a>
+<span class="sourceLineNo">019</span><a name="line.19"></a>
+<span class="sourceLineNo">020</span>/**<a name="line.20"></a>
+<span class="sourceLineNo">021</span> * Determines how duplicate header fields 
should be handled<a name="line.21"></a>
+<span class="sourceLineNo">022</span> * if {@link 
CSVFormat.Builder#setHeader(Class)} is not null.<a name="line.22"></a>
+<span class="sourceLineNo">023</span> *<a name="line.23"></a>
+<span class="sourceLineNo">024</span> * @since 1.10.0<a name="line.24"></a>
+<span class="sourceLineNo">025</span> */<a name="line.25"></a>
+<span class="sourceLineNo">026</span>public enum DuplicateHeaderMode {<a 
name="line.26"></a>
+<span class="sourceLineNo">027</span><a name="line.27"></a>
+<span class="sourceLineNo">028</span>    /**<a name="line.28"></a>
+<span class="sourceLineNo">029</span>     * Allows all duplicate headers.<a 
name="line.29"></a>
+<span class="sourceLineNo">030</span>     */<a name="line.30"></a>
+<span class="sourceLineNo">031</span>    ALLOW_ALL,<a name="line.31"></a>
+<span class="sourceLineNo">032</span><a name="line.32"></a>
+<span class="sourceLineNo">033</span>    /**<a name="line.33"></a>
+<span class="sourceLineNo">034</span>     * Allows duplicate headers only if 
they're empty, blank, or null strings.<a name="line.34"></a>
+<span class="sourceLineNo">035</span>     */<a name="line.35"></a>
+<span class="sourceLineNo">036</span>    ALLOW_EMPTY,<a name="line.36"></a>
+<span class="sourceLineNo">037</span><a name="line.37"></a>
+<span class="sourceLineNo">038</span>    /**<a name="line.38"></a>
+<span class="sourceLineNo">039</span>     * Disallows duplicate headers 
entirely.<a name="line.39"></a>
+<span class="sourceLineNo">040</span>     */<a name="line.40"></a>
+<span class="sourceLineNo">041</span>    DISALLOW<a name="line.41"></a>
+<span class="sourceLineNo">042</span>}<a name="line.42"></a>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+</pre>
+</div>
+</body>
+</html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-csv/changes-report.html
==============================================================================
--- websites/production/commons/content/proper/commons-csv/changes-report.html 
(original)
+++ websites/production/commons/content/proper/commons-csv/changes-report.html 
Thu Feb  2 12:12:49 2023
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 31 July 2021
+ | Generated by Apache Maven Doxia at 02 February 2023
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-                    <meta name="Date-Revision-yyyymmdd" content="20210731" />
+                    <meta name="Date-Revision-yyyymmdd" content="20230202" />
             <meta http-equiv="Content-Language" content="en" />
         <title>Commons CSV &#x2013; Apache Commons CSV Release Notes</title>
 
@@ -40,16 +40,16 @@
           <a class="brand" 
href="https://commons.apache.org/proper/commons-csv/";>Apache Commons CSV 
&trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 31 July 2021</li>
-    <li class="divider">|</li> <li id="projectVersion">Version: 1.9.0</li>
+          <li id="publishDate">Last Published: 02 February 2023</li>
+    <li class="divider">|</li> <li id="projectVersion">Version: 1.10.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
             <li>
-                  <a href="http://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
+                  <a href="https://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
     ApacheCon</a>
       </li>
           <li>
-                  <a href="http://www.apache.org"; class="externalLink" 
title="Apache">
+                  <a href="https://www.apache.org"; class="externalLink" 
title="Apache">
     Apache</a>
       </li>
           <li>
@@ -115,11 +115,11 @@
                  </ul>
       <ul class="nav nav-list">
                                  <li class="nav-header"><i 
class="icon-info-sign"></i>Project Documentation</li>
-                                                                               
                                                                                
                                                                                
                               <li class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                 <li class="collapsed">
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
+                                                                               
                                                                                
                                                                                
                                                                                
    <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -152,10 +152,6 @@
     Rat Report</a>
           </li>
                                  <li class="none">
-                  <a href="jdepend-report.html" title="JDepend">
-    JDepend</a>
-          </li>
-                                 <li class="none">
                   <a href="jacoco/index.html" title="JaCoCo">
     JaCoCo</a>
           </li>
@@ -193,7 +189,7 @@
     Home</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/licenses/"; 
class="externalLink" title="License">
+                  <a href="https://www.apache.org/licenses/"; 
class="externalLink" title="License">
     License</a>
           </li>
                                                                                
<li class="collapsed">
@@ -228,14 +224,22 @@
     Building Components</a>
           </li>
                              <li class="none">
-                  <a href="../../commons-parent-pom.html" title="Commons 
Parent Pom">
-    Commons Parent Pom</a>
+                  <a href="../../commons-parent-pom.html" title="Commons 
Parent POM">
+    Commons Parent POM</a>
           </li>
                              <li class="none">
                   <a href="../../build-plugin/index.html" title="Commons Build 
Plugin">
     Commons Build Plugin</a>
           </li>
                              <li class="none">
+                  <a href="release-plugin/index.html" title="Commons Release 
Plugin">
+    Commons Release Plugin</a>
+          </li>
+                             <li class="none">
+                  <a href="site-publish.html" title="Site Publication">
+    Site Publication</a>
+          </li>
+                             <li class="none">
                   <a href="../../releases/index.html" title="Releasing 
Components">
     Releasing Components</a>
           </li>
@@ -247,37 +251,41 @@
       <ul class="nav nav-list">
                            <li class="nav-header">ASF</li>
                                         <li class="none">
-                  <a href="http://www.apache.org/foundation/how-it-works.html"; 
class="externalLink" title="How the ASF works">
+                  <a 
href="https://www.apache.org/foundation/how-it-works.html"; class="externalLink" 
title="How the ASF works">
     How the ASF works</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/getinvolved.html"; 
class="externalLink" title="Get Involved">
+                  <a href="https://www.apache.org/foundation/getinvolved.html"; 
class="externalLink" title="Get Involved">
     Get Involved</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/dev/"; class="externalLink" 
title="Developer Resources">
+                  <a href="https://www.apache.org/dev/"; class="externalLink" 
title="Developer Resources">
     Developer Resources</a>
           </li>
                              <li class="none">
-                  <a 
href="http://www.apache.org/foundation/policies/conduct.html"; 
class="externalLink" title="Code of Conduct">
+                  <a 
href="https://www.apache.org/foundation/policies/conduct.html"; 
class="externalLink" title="Code of Conduct">
     Code of Conduct</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/sponsorship.html"; 
class="externalLink" title="Sponsorship">
+                  <a 
href="https://privacy.apache.org/policies/privacy-policy-public.html"; 
class="externalLink" title="Privacy">
+    Privacy</a>
+          </li>
+                             <li class="none">
+                  <a href="https://www.apache.org/foundation/sponsorship.html"; 
class="externalLink" title="Sponsorship">
     Sponsorship</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/thanks.html"; 
class="externalLink" title="Thanks">
+                  <a href="https://www.apache.org/foundation/thanks.html"; 
class="externalLink" title="Thanks">
     Thanks</a>
           </li>
                  </ul>
               </div>
             <div id="poweredBy">
-                                                                               
                                     <a 
href="http://www.apache.org/events/current-event.html"; title="ApacheCon" 
class="builtBy">
-        <img class="builtBy"  alt="ApacheCon" 
src="http://www.apache.org/events/current-event-125x125.png";    />
+                                                                               
                                     <a 
href="https://www.apache.org/events/current-event.html"; title="ApacheCon" 
class="builtBy">
+        <img class="builtBy"  alt="ApacheCon" 
src="https://www.apache.org/events/current-event-125x125.png";    />
       </a>
-                                                                               
                     <a href="http://maven.apache.org/"; title="Maven" 
class="builtBy">
-        <img class="builtBy"  alt="Maven" 
src="http://maven.apache.org/images/logos/maven-feather.png";    />
+                                                                               
                     <a href="https://maven.apache.org/"; title="Maven" 
class="builtBy">
+        <img class="builtBy"  alt="Maven" 
src="https://maven.apache.org/images/logos/maven-feather.png";    />
       </a>
                       </div>
           </td>
@@ -291,46 +299,216 @@
 <th>Date</th>
 <th>Description</th></tr>
 <tr class="b">
-<td><a href="#a1.9.0">1.9.0</a></td>
-<td>2020-07-24</td>
+<td><a href="#a1.10.0">1.10.0</a></td>
+<td>2023-01-28</td>
 <td>Feature and bug fix release (Java 8)</td></tr>
 <tr class="a">
+<td><a href="#a1.9.0">1.9.0</a></td>
+<td>2021-07-24</td>
+<td>Feature and bug fix release (Java 8)</td></tr>
+<tr class="b">
 <td><a href="#a1.8">1.8</a></td>
 <td>2020-02-01</td>
 <td>Feature and bug fix release (Java 8).  This release fixes serialization 
compatibility of CSVRecord with versions 1.0 to 1.6. New fields added since 1.7 
are not serialized. Support for Serializable is scheduled to be removed in 
version 2.0.</td></tr>
-<tr class="b">
+<tr class="a">
 <td><a href="#a1.7">1.7</a></td>
 <td>2019-06-01</td>
 <td>Feature and bug fix release (Java 8)</td></tr>
-<tr class="a">
+<tr class="b">
 <td><a href="#a1.6">1.6</a></td>
 <td>2018-09-22</td>
 <td>Feature and bug fix release (Java 7)</td></tr>
-<tr class="b">
+<tr class="a">
 <td><a href="#a1.5">1.5</a></td>
 <td>2017-09-03</td>
 <td>Feature and bug fix release (Java 7)</td></tr>
-<tr class="a">
+<tr class="b">
 <td><a href="#a1.4">1.4</a></td>
 <td>2016-05-28</td>
 <td>Feature and bug fix release (Java 6)</td></tr>
-<tr class="b">
+<tr class="a">
 <td><a href="#a1.3">1.3</a></td>
 <td>2016-05-09</td>
 <td>Feature and bug fix release (Java 6)</td></tr>
-<tr class="a">
+<tr class="b">
 <td><a href="#a1.2">1.2</a></td>
 <td>2015-08-24</td>
 <td>Feature and bug fix release (Java 6)</td></tr>
-<tr class="b">
+<tr class="a">
 <td><a href="#a1.1">1.1</a></td>
 <td>2014-11-16</td>
 <td>Feature and bug fix release (Java 6)</td></tr>
-<tr class="a">
+<tr class="b">
 <td><a href="#a1.0">1.0</a></td>
 <td>2014-08-14</td>
 <td>First release (Java 6)</td></tr></table></section><section>
-<h3 id="a1.9.0">Release 1.9.0 &#x2013; 2020-07-24</h3>
+<h3 id="a1.10.0">Release 1.10.0 &#x2013; 2023-01-28</h3>
+<table border="0" class="bodyTable">
+<tr class="a">
+<th>Type</th>
+<th>Changes</th>
+<th>By</th></tr>
+<tr class="b">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>Minor changes #172. Thanks to Arturo Bernal.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>No Automatic-Module-Name prevents usage in JPMS projects without repacking 
the JAR. Fixes <a class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-292";>CSV-292</a>. Thanks to Rob 
Vesse.</td>
+<td><a href="team-list.html#kinow">kinow</a></td></tr>
+<tr class="b">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>Fix for multi-char delimiter not working as expected #218. Fixes <a 
class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-288";>CSV-288</a>. Thanks to 
Santhsoh, Angus.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>CSVRecord.get(Enum) should use Enum.name() instead of Enum.toString(). 
Fixes <a class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-269";>CSV-269</a>. Thanks to 
Auke te Winkel, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>Allow org.apache.commons.csv.IOUtils.copy(Reader, Appendable, CharBuffer) 
to compile on Java 11 and run on Java 8. Thanks to Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>CSVRecord.toList() does not give write access to the new List. Fixes <a 
class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-300";>CSV-300</a>. Thanks to 
Markus Spann, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>CSVParser.getRecords() now throws UncheckedIOException instead of 
IOException. Thanks to Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>Add comments to iterator() and stream() #270. Fixes <a 
class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-274";>CSV-274</a>. Thanks to 
Peter Hull, Bruno P. Kinoshita, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>Fix wrong assumptions in PostgreSQL formats #265. Fixes <a 
class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-290";>CSV-290</a>. Thanks to 
angusdev, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>Validate input to setDelimiter(String) for empty string #266. Thanks to 
Mykola Faryma.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>Bump CSVFormat#serialVersionUID from 1 to 2. Thanks to Dependabot.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
+<td>CSVParser: Identify duplicates in null, empty and blank header names #279. 
Thanks to Alex Herbert.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/remove.gif" alt="Remove" title="Remove" /></td>
+<td>Serialization in CSVFormat is not supported from one version to the 
next.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/add.gif" alt="Add" title="Add" /></td>
+<td>Make CSVRecord#values() public. Fixes <a class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-291";>CSV-291</a>. Thanks to 
Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/add.gif" alt="Add" title="Add" /></td>
+<td>Add DuplicateHeaderMode for flexibility with header strictness. #114. 
Fixes <a class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-264";>CSV-264</a>. Thanks to 
Sagar Tiwari, Seth Falco, Alex Herbert, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/add.gif" alt="Add" title="Add" /></td>
+<td>Support for parallelism in CSVPrinter. Fixes <a class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-295";>CSV-295</a>. Thanks to 
Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/add.gif" alt="Add" title="Add" /></td>
+<td>Add CSVPrinter.printRecord[s](Stream). Fixes <a class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-295";>CSV-295</a>. Thanks to 
Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/add.gif" alt="Add" title="Add" /></td>
+<td>Add accessors for header/trailer comments #257. Fixes <a 
class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-304";>CSV-304</a>. Thanks to 
Peter Hull, Bruno P. Kinoshita, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/add.gif" alt="Add" title="Add" /></td>
+<td>Add github/codeql-action.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump actions/cache from 2.1.6 to 3.0.10 #196, #233, #243, #267, #271. 
Thanks to Dependabot, Gary Gregory.</td>
+<td><a href="team-list.html#kinow">kinow</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump actions/checkout from 2.3.4 to 3.1.0 #188, #195, #220, #272. Thanks 
to Dependabot, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump actions/setup-java from 2 to 3.5.1. Thanks to Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump actions/upload-artifact from 3.1.0 to 3.1.1 #280. Thanks to 
Dependabot.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump commons-parent from 52 to 56 #264, #288, #298. Thanks to Gary 
Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump checkstyle from 8.44 to 9.2.1 #180, #190, #194, #202, #207. Thanks to 
Dependabot.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump junit-jupiter from 5.8.0-M1 to 5.9.1 #179, #186, #201, #244, #263. 
Thanks to Dependabot.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump jmh-core from 1.32 to 1.36 #176, #208, #229, #285. Thanks to 
Dependabot.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump jmh-generator-annprocess from 1.32 to 1.36 #175, #206, #226, #283. 
Thanks to Dependabot.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump mockito-core from 3.11.2 to 4.11.0 #187, #197, #204, #212, #230, 
#237, #251, #259, #284, #292, #297. Thanks to Dependabot, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump maven-pmd-plugin from 3.14.0 to 3.19.0 #184, #219, #238, #254, #258. 
Thanks to Dependabot.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump pmd from 6.36.0 to 6.52.0 #173, #189, #193, #199, #227, #233, #214, 
#236, #240, #247, #255, #273. Thanks to Dependabot, Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump opencsv from 5.5.1 to 5.7.1 #182, #221, #260, #281. Thanks to Gary 
Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump spotbugs-maven-plugin from 4.3.0 to 4.7.3.0 #192, #198, #203, #211, 
#225, #234, #242, #245, #261, #275, #282. Thanks to Dependabot.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump com.github.spotbugs:spotbugs from 4.5.3 to 4.7.2. Thanks to Gary 
Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump h2 from 1.4.200 to 2.1.214 #200, #205, #213, #239. Thanks to 
Dependabot.</td>
+<td><a href="team-list.html#kinow">kinow</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump maven-javadoc-plugin from 3.3.0 to 3.4.1. Thanks to Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump biz.aQute.bnd:biz.aQute.bndlib from 5.3.0 to 6.3.1. Thanks to Gary 
Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump jacoco-maven-plugin from 0.8.7 to 0.8.8. Thanks to Gary Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="b">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump japicmp-maven-plugin from 0.15.3 to 0.16.0. Thanks to Gary 
Gregory.</td>
+<td><a href="team-list.html#ggregory">ggregory</a></td></tr>
+<tr class="a">
+<td><img src="images/update.gif" alt="Update" title="Update" /></td>
+<td>Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0 #253. Thanks to 
Dependabot.</td>
+<td><a 
href="team-list.html#kinow">kinow</a></td></tr></table></section><section>
+<h3 id="a1.9.0">Release 1.9.0 &#x2013; 2021-07-24</h3>
 <table border="0" class="bodyTable">
 <tr class="b">
 <th>Type</th>
@@ -940,7 +1118,7 @@
 <td><a href="team-list.html#britter">britter</a></td></tr>
 <tr class="a">
 <td><img src="images/fix.gif" alt="Fix" title="Fix" /></td>
-<td>NullPointerException when empty header string and and null string of 
&quot;&quot;. Fixes <a class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-122";>CSV-122</a>. Thanks to 
Mike Lewis.</td>
+<td>NullPointerException when empty header string and null string of 
&quot;&quot;. Fixes <a class="externalLink" 
href="https://issues.apache.org/jira/browse/CSV-122";>CSV-122</a>. Thanks to 
Mike Lewis.</td>
 <td><a href="team-list.html#britter">britter</a></td></tr>
 <tr class="b">
 <td><img src="images/update.gif" alt="Update" title="Update" /></td>
@@ -1115,7 +1293,7 @@
     </div>
 
     <div class="footer">
-      <p>Copyright &copy;                    2005-2021
+      <p>Copyright &copy;                    2005-2023
                       <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All Rights Reserved.</p>
                                         

Modified: websites/production/commons/content/proper/commons-csv/checkstyle.html
==============================================================================
--- websites/production/commons/content/proper/commons-csv/checkstyle.html 
(original)
+++ websites/production/commons/content/proper/commons-csv/checkstyle.html Thu 
Feb  2 12:12:49 2023
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 31 July 2021
+ | Generated by Apache Maven Doxia at 02 February 2023
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-                    <meta name="Date-Revision-yyyymmdd" content="20210731" />
+                    <meta name="Date-Revision-yyyymmdd" content="20230202" />
             <meta http-equiv="Content-Language" content="en" />
         <title>Commons CSV &#x2013; Checkstyle Results</title>
 
@@ -40,16 +40,16 @@
           <a class="brand" 
href="https://commons.apache.org/proper/commons-csv/";>Apache Commons CSV 
&trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 31 July 2021</li>
-    <li class="divider">|</li> <li id="projectVersion">Version: 1.9.0</li>
+          <li id="publishDate">Last Published: 02 February 2023</li>
+    <li class="divider">|</li> <li id="projectVersion">Version: 1.10.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
             <li>
-                  <a href="http://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
+                  <a href="https://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
     ApacheCon</a>
       </li>
           <li>
-                  <a href="http://www.apache.org"; class="externalLink" 
title="Apache">
+                  <a href="https://www.apache.org"; class="externalLink" 
title="Apache">
     Apache</a>
       </li>
           <li>
@@ -115,11 +115,11 @@
                  </ul>
       <ul class="nav nav-list">
                                  <li class="nav-header"><i 
class="icon-info-sign"></i>Project Documentation</li>
-                                                                               
                                                                                
                                                                                
                               <li class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                 <li class="collapsed">
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
+                                                                               
                                                                                
                                                                                
                                                                                
    <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -152,10 +152,6 @@
     Rat Report</a>
           </li>
                                  <li class="none">
-                  <a href="jdepend-report.html" title="JDepend">
-    JDepend</a>
-          </li>
-                                 <li class="none">
                   <a href="jacoco/index.html" title="JaCoCo">
     JaCoCo</a>
           </li>
@@ -193,7 +189,7 @@
     Home</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/licenses/"; 
class="externalLink" title="License">
+                  <a href="https://www.apache.org/licenses/"; 
class="externalLink" title="License">
     License</a>
           </li>
                                                                                
<li class="collapsed">
@@ -228,14 +224,22 @@
     Building Components</a>
           </li>
                              <li class="none">
-                  <a href="../../commons-parent-pom.html" title="Commons 
Parent Pom">
-    Commons Parent Pom</a>
+                  <a href="../../commons-parent-pom.html" title="Commons 
Parent POM">
+    Commons Parent POM</a>
           </li>
                              <li class="none">
                   <a href="../../build-plugin/index.html" title="Commons Build 
Plugin">
     Commons Build Plugin</a>
           </li>
                              <li class="none">
+                  <a href="release-plugin/index.html" title="Commons Release 
Plugin">
+    Commons Release Plugin</a>
+          </li>
+                             <li class="none">
+                  <a href="site-publish.html" title="Site Publication">
+    Site Publication</a>
+          </li>
+                             <li class="none">
                   <a href="../../releases/index.html" title="Releasing 
Components">
     Releasing Components</a>
           </li>
@@ -247,44 +251,48 @@
       <ul class="nav nav-list">
                            <li class="nav-header">ASF</li>
                                         <li class="none">
-                  <a href="http://www.apache.org/foundation/how-it-works.html"; 
class="externalLink" title="How the ASF works">
+                  <a 
href="https://www.apache.org/foundation/how-it-works.html"; class="externalLink" 
title="How the ASF works">
     How the ASF works</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/getinvolved.html"; 
class="externalLink" title="Get Involved">
+                  <a href="https://www.apache.org/foundation/getinvolved.html"; 
class="externalLink" title="Get Involved">
     Get Involved</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/dev/"; class="externalLink" 
title="Developer Resources">
+                  <a href="https://www.apache.org/dev/"; class="externalLink" 
title="Developer Resources">
     Developer Resources</a>
           </li>
                              <li class="none">
-                  <a 
href="http://www.apache.org/foundation/policies/conduct.html"; 
class="externalLink" title="Code of Conduct">
+                  <a 
href="https://www.apache.org/foundation/policies/conduct.html"; 
class="externalLink" title="Code of Conduct">
     Code of Conduct</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/sponsorship.html"; 
class="externalLink" title="Sponsorship">
+                  <a 
href="https://privacy.apache.org/policies/privacy-policy-public.html"; 
class="externalLink" title="Privacy">
+    Privacy</a>
+          </li>
+                             <li class="none">
+                  <a href="https://www.apache.org/foundation/sponsorship.html"; 
class="externalLink" title="Sponsorship">
     Sponsorship</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/thanks.html"; 
class="externalLink" title="Thanks">
+                  <a href="https://www.apache.org/foundation/thanks.html"; 
class="externalLink" title="Thanks">
     Thanks</a>
           </li>
                  </ul>
               </div>
             <div id="poweredBy">
-                                                                               
                                     <a 
href="http://www.apache.org/events/current-event.html"; title="ApacheCon" 
class="builtBy">
-        <img class="builtBy"  alt="ApacheCon" 
src="http://www.apache.org/events/current-event-125x125.png";    />
+                                                                               
                                     <a 
href="https://www.apache.org/events/current-event.html"; title="ApacheCon" 
class="builtBy">
+        <img class="builtBy"  alt="ApacheCon" 
src="https://www.apache.org/events/current-event-125x125.png";    />
       </a>
-                                                                               
                     <a href="http://maven.apache.org/"; title="Maven" 
class="builtBy">
-        <img class="builtBy"  alt="Maven" 
src="http://maven.apache.org/images/logos/maven-feather.png";    />
+                                                                               
                     <a href="https://maven.apache.org/"; title="Maven" 
class="builtBy">
+        <img class="builtBy"  alt="Maven" 
src="https://maven.apache.org/images/logos/maven-feather.png";    />
       </a>
                       </div>
           </td>
           <td class="content">
                                                                           
<section>
 <h2><a name="Checkstyle_Results"></a>Checkstyle Results</h2>
-<p>The following document contains the results of <a class="externalLink" 
href="http://checkstyle.sourceforge.net/";>Checkstyle</a> 8.44 with 
/Users/garydgregory/git/commons-csv/src/site/resources/checkstyle/checkstyle.xml
 ruleset.&#160;<a href="checkstyle.rss"><figure><figcaption>rss 
feed</figcaption><img src="images/rss.png" alt="" 
/></figure></a></p></section><section>
+<p>The following document contains the results of <a class="externalLink" 
href="https://checkstyle.org/";>Checkstyle</a> 9.3 with 
/Users/garydgregory/git/commons-csv/src/site/resources/checkstyle/checkstyle.xml
 ruleset.</p></section><section>
 <h2><a name="Summary"></a>Summary</h2>
 <table border="0" class="bodyTable">
 <tr class="a">
@@ -293,7 +301,7 @@
 <th><figure><img src="images/icon_warning_sml.gif" alt="" 
/></figure>&#160;Warnings</th>
 <th><figure><img src="images/icon_error_sml.gif" alt="" 
/></figure>&#160;Errors</th></tr>
 <tr class="b">
-<td>11</td>
+<td>12</td>
 <td>0</td>
 <td>0</td>
 <td>0</td></tr></table></section><section>
@@ -311,7 +319,7 @@
     </div>
 
     <div class="footer">
-      <p>Copyright &copy;                    2005-2021
+      <p>Copyright &copy;                    2005-2023
                       <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All Rights Reserved.</p>
                                         

Modified: 
websites/production/commons/content/proper/commons-csv/checkstyle/checkstyle-suppressions.xml
==============================================================================
--- 
websites/production/commons/content/proper/commons-csv/checkstyle/checkstyle-suppressions.xml
 (original)
+++ 
websites/production/commons/content/proper/commons-csv/checkstyle/checkstyle-suppressions.xml
 Thu Feb  2 12:12:49 2023
@@ -19,5 +19,5 @@
     "-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
     "https://checkstyle.org/dtds/suppressions_1_2.dtd";>
 <suppressions>
-  <suppress checks="LineLength" files="[\\/]CSVParser\.java$" lines="511"/>
+  <suppress checks="LineLength" files="[\\/]CSVParser\.java$" lines="515"/>
 </suppressions>

Modified: 
websites/production/commons/content/proper/commons-csv/ci-management.html
==============================================================================
--- websites/production/commons/content/proper/commons-csv/ci-management.html 
(original)
+++ websites/production/commons/content/proper/commons-csv/ci-management.html 
Thu Feb  2 12:12:49 2023
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 31 July 2021
+ | Generated by Apache Maven Doxia at 02 February 2023
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-                    <meta name="Date-Revision-yyyymmdd" content="20210731" />
+                    <meta name="Date-Revision-yyyymmdd" content="20230202" />
             <meta http-equiv="Content-Language" content="en" />
         <title>Commons CSV &#x2013; CI Management</title>
 
@@ -40,16 +40,16 @@
           <a class="brand" 
href="https://commons.apache.org/proper/commons-csv/";>Apache Commons CSV 
&trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 31 July 2021</li>
-    <li class="divider">|</li> <li id="projectVersion">Version: 1.9.0</li>
+          <li id="publishDate">Last Published: 02 February 2023</li>
+    <li class="divider">|</li> <li id="projectVersion">Version: 1.10.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
             <li>
-                  <a href="http://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
+                  <a href="https://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
     ApacheCon</a>
       </li>
           <li>
-                  <a href="http://www.apache.org"; class="externalLink" 
title="Apache">
+                  <a href="https://www.apache.org"; class="externalLink" 
title="Apache">
     Apache</a>
       </li>
           <li>
@@ -115,7 +115,7 @@
                  </ul>
       <ul class="nav nav-list">
                                  <li class="nav-header"><i 
class="icon-info-sign"></i>Project Documentation</li>
-                                                                               
                                                                                
                                                                                
                                         <li class="expanded">
+                                                                               
                                                                                
                                                                                
                                                           <li class="expanded">
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     <ul>
@@ -148,6 +148,10 @@
     Dependency Information</a>
           </li>
                                  <li class="none">
+                  <a href="dependency-management.html" title="Dependency 
Management">
+    Dependency Management</a>
+          </li>
+                                 <li class="none">
                   <a href="dependencies.html" title="Dependencies">
     Dependencies</a>
           </li>
@@ -165,7 +169,7 @@
           </li>
                    </ul>
               </li>
-                                                                               
                                                                                
                                                                                
                                                                                
            <li class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                                          <li 
class="collapsed">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     </li>
@@ -177,7 +181,7 @@
     Home</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/licenses/"; 
class="externalLink" title="License">
+                  <a href="https://www.apache.org/licenses/"; 
class="externalLink" title="License">
     License</a>
           </li>
                                                                                
<li class="collapsed">
@@ -212,14 +216,22 @@
     Building Components</a>
           </li>
                              <li class="none">
-                  <a href="../../commons-parent-pom.html" title="Commons 
Parent Pom">
-    Commons Parent Pom</a>
+                  <a href="../../commons-parent-pom.html" title="Commons 
Parent POM">
+    Commons Parent POM</a>
           </li>
                              <li class="none">
                   <a href="../../build-plugin/index.html" title="Commons Build 
Plugin">
     Commons Build Plugin</a>
           </li>
                              <li class="none">
+                  <a href="release-plugin/index.html" title="Commons Release 
Plugin">
+    Commons Release Plugin</a>
+          </li>
+                             <li class="none">
+                  <a href="site-publish.html" title="Site Publication">
+    Site Publication</a>
+          </li>
+                             <li class="none">
                   <a href="../../releases/index.html" title="Releasing 
Components">
     Releasing Components</a>
           </li>
@@ -231,48 +243,52 @@
       <ul class="nav nav-list">
                            <li class="nav-header">ASF</li>
                                         <li class="none">
-                  <a href="http://www.apache.org/foundation/how-it-works.html"; 
class="externalLink" title="How the ASF works">
+                  <a 
href="https://www.apache.org/foundation/how-it-works.html"; class="externalLink" 
title="How the ASF works">
     How the ASF works</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/getinvolved.html"; 
class="externalLink" title="Get Involved">
+                  <a href="https://www.apache.org/foundation/getinvolved.html"; 
class="externalLink" title="Get Involved">
     Get Involved</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/dev/"; class="externalLink" 
title="Developer Resources">
+                  <a href="https://www.apache.org/dev/"; class="externalLink" 
title="Developer Resources">
     Developer Resources</a>
           </li>
                              <li class="none">
-                  <a 
href="http://www.apache.org/foundation/policies/conduct.html"; 
class="externalLink" title="Code of Conduct">
+                  <a 
href="https://www.apache.org/foundation/policies/conduct.html"; 
class="externalLink" title="Code of Conduct">
     Code of Conduct</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/sponsorship.html"; 
class="externalLink" title="Sponsorship">
+                  <a 
href="https://privacy.apache.org/policies/privacy-policy-public.html"; 
class="externalLink" title="Privacy">
+    Privacy</a>
+          </li>
+                             <li class="none">
+                  <a href="https://www.apache.org/foundation/sponsorship.html"; 
class="externalLink" title="Sponsorship">
     Sponsorship</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/thanks.html"; 
class="externalLink" title="Thanks">
+                  <a href="https://www.apache.org/foundation/thanks.html"; 
class="externalLink" title="Thanks">
     Thanks</a>
           </li>
                  </ul>
               </div>
             <div id="poweredBy">
-                                                                               
                                     <a 
href="http://www.apache.org/events/current-event.html"; title="ApacheCon" 
class="builtBy">
-        <img class="builtBy"  alt="ApacheCon" 
src="http://www.apache.org/events/current-event-125x125.png";    />
+                                                                               
                                     <a 
href="https://www.apache.org/events/current-event.html"; title="ApacheCon" 
class="builtBy">
+        <img class="builtBy"  alt="ApacheCon" 
src="https://www.apache.org/events/current-event-125x125.png";    />
       </a>
-                                                                               
                     <a href="http://maven.apache.org/"; title="Maven" 
class="builtBy">
-        <img class="builtBy"  alt="Maven" 
src="http://maven.apache.org/images/logos/maven-feather.png";    />
+                                                                               
                     <a href="https://maven.apache.org/"; title="Maven" 
class="builtBy">
+        <img class="builtBy"  alt="Maven" 
src="https://maven.apache.org/images/logos/maven-feather.png";    />
       </a>
                       </div>
           </td>
           <td class="content">
                                                                           
<section>
 <h2><a name="Overview"></a>Overview</h2><a name="Overview"></a>
-<p>This project uses <a class="externalLink" 
href="http://jenkins-ci.org/";>Jenkins</a>.</p></section><section>
+<p>This project uses <a class="externalLink" 
href="https://github.com/features/actions/";>GitHub 
Actions</a>.</p></section><section>
 <h2><a name="Access"></a>Access</h2><a name="Access"></a>
 <p>The following is a link to the continuous integration system used by the 
project:</p>
 <div class="source">
-<pre><a class="externalLink" 
href="https://builds.apache.org/";>https://builds.apache.org/</a></pre></div></section><section>
+<pre><a class="externalLink" 
href="https://github.com/apache/commons-csv/actions";>https://github.com/apache/commons-csv/actions</a></pre></div></section><section>
 <h2><a name="Notifiers"></a>Notifiers</h2><a name="Notifiers"></a>
 <p>No notifiers are defined. Please check back at a later date.</p></section>
                       </td>
@@ -281,7 +297,7 @@
     </div>
 
     <div class="footer">
-      <p>Copyright &copy;                    2005-2021
+      <p>Copyright &copy;                    2005-2023
                       <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All Rights Reserved.</p>
                                         

Modified: websites/production/commons/content/proper/commons-csv/cpd.html
==============================================================================
--- websites/production/commons/content/proper/commons-csv/cpd.html (original)
+++ websites/production/commons/content/proper/commons-csv/cpd.html Thu Feb  2 
12:12:49 2023
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 31 July 2021
+ | Generated by Apache Maven Doxia at 02 February 2023
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-                    <meta name="Date-Revision-yyyymmdd" content="20210731" />
+                    <meta name="Date-Revision-yyyymmdd" content="20230202" />
             <meta http-equiv="Content-Language" content="en" />
         <title>Commons CSV &#x2013; CPD Results</title>
 
@@ -40,16 +40,16 @@
           <a class="brand" 
href="https://commons.apache.org/proper/commons-csv/";>Apache Commons CSV 
&trade;</a>
           <ul class="nav">      
                     
-          <li id="publishDate">Last Published: 31 July 2021</li>
-    <li class="divider">|</li> <li id="projectVersion">Version: 1.9.0</li>
+          <li id="publishDate">Last Published: 02 February 2023</li>
+    <li class="divider">|</li> <li id="projectVersion">Version: 1.10.0</li>
   </ul>
           <div class="pull-right">  <ul class="nav">
             <li>
-                  <a href="http://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
+                  <a href="https://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
     ApacheCon</a>
       </li>
           <li>
-                  <a href="http://www.apache.org"; class="externalLink" 
title="Apache">
+                  <a href="https://www.apache.org"; class="externalLink" 
title="Apache">
     Apache</a>
       </li>
           <li>
@@ -115,11 +115,11 @@
                  </ul>
       <ul class="nav nav-list">
                                  <li class="nav-header"><i 
class="icon-info-sign"></i>Project Documentation</li>
-                                                                               
                                                                                
                                                                                
                               <li class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                 <li class="collapsed">
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
+                                                                               
                                                                                
                                                                                
                                                                                
    <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -152,10 +152,6 @@
     Rat Report</a>
           </li>
                                  <li class="none">
-                  <a href="jdepend-report.html" title="JDepend">
-    JDepend</a>
-          </li>
-                                 <li class="none">
                   <a href="jacoco/index.html" title="JaCoCo">
     JaCoCo</a>
           </li>
@@ -193,7 +189,7 @@
     Home</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/licenses/"; 
class="externalLink" title="License">
+                  <a href="https://www.apache.org/licenses/"; 
class="externalLink" title="License">
     License</a>
           </li>
                                                                                
<li class="collapsed">
@@ -228,14 +224,22 @@
     Building Components</a>
           </li>
                              <li class="none">
-                  <a href="../../commons-parent-pom.html" title="Commons 
Parent Pom">
-    Commons Parent Pom</a>
+                  <a href="../../commons-parent-pom.html" title="Commons 
Parent POM">
+    Commons Parent POM</a>
           </li>
                              <li class="none">
                   <a href="../../build-plugin/index.html" title="Commons Build 
Plugin">
     Commons Build Plugin</a>
           </li>
                              <li class="none">
+                  <a href="release-plugin/index.html" title="Commons Release 
Plugin">
+    Commons Release Plugin</a>
+          </li>
+                             <li class="none">
+                  <a href="site-publish.html" title="Site Publication">
+    Site Publication</a>
+          </li>
+                             <li class="none">
                   <a href="../../releases/index.html" title="Releasing 
Components">
     Releasing Components</a>
           </li>
@@ -247,44 +251,48 @@
       <ul class="nav nav-list">
                            <li class="nav-header">ASF</li>
                                         <li class="none">
-                  <a href="http://www.apache.org/foundation/how-it-works.html"; 
class="externalLink" title="How the ASF works">
+                  <a 
href="https://www.apache.org/foundation/how-it-works.html"; class="externalLink" 
title="How the ASF works">
     How the ASF works</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/getinvolved.html"; 
class="externalLink" title="Get Involved">
+                  <a href="https://www.apache.org/foundation/getinvolved.html"; 
class="externalLink" title="Get Involved">
     Get Involved</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/dev/"; class="externalLink" 
title="Developer Resources">
+                  <a href="https://www.apache.org/dev/"; class="externalLink" 
title="Developer Resources">
     Developer Resources</a>
           </li>
                              <li class="none">
-                  <a 
href="http://www.apache.org/foundation/policies/conduct.html"; 
class="externalLink" title="Code of Conduct">
+                  <a 
href="https://www.apache.org/foundation/policies/conduct.html"; 
class="externalLink" title="Code of Conduct">
     Code of Conduct</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/sponsorship.html"; 
class="externalLink" title="Sponsorship">
+                  <a 
href="https://privacy.apache.org/policies/privacy-policy-public.html"; 
class="externalLink" title="Privacy">
+    Privacy</a>
+          </li>
+                             <li class="none">
+                  <a href="https://www.apache.org/foundation/sponsorship.html"; 
class="externalLink" title="Sponsorship">
     Sponsorship</a>
           </li>
                              <li class="none">
-                  <a href="http://www.apache.org/foundation/thanks.html"; 
class="externalLink" title="Thanks">
+                  <a href="https://www.apache.org/foundation/thanks.html"; 
class="externalLink" title="Thanks">
     Thanks</a>
           </li>
                  </ul>
               </div>
             <div id="poweredBy">
-                                                                               
                                     <a 
href="http://www.apache.org/events/current-event.html"; title="ApacheCon" 
class="builtBy">
-        <img class="builtBy"  alt="ApacheCon" 
src="http://www.apache.org/events/current-event-125x125.png";    />
+                                                                               
                                     <a 
href="https://www.apache.org/events/current-event.html"; title="ApacheCon" 
class="builtBy">
+        <img class="builtBy"  alt="ApacheCon" 
src="https://www.apache.org/events/current-event-125x125.png";    />
       </a>
-                                                                               
                     <a href="http://maven.apache.org/"; title="Maven" 
class="builtBy">
-        <img class="builtBy"  alt="Maven" 
src="http://maven.apache.org/images/logos/maven-feather.png";    />
+                                                                               
                     <a href="https://maven.apache.org/"; title="Maven" 
class="builtBy">
+        <img class="builtBy"  alt="Maven" 
src="https://maven.apache.org/images/logos/maven-feather.png";    />
       </a>
                       </div>
           </td>
           <td class="content">
                                                                           
<section>
 <h2><a name="CPD_Results"></a>CPD Results</h2>
-<p>The following document contains the results of PMD's  <a 
class="externalLink" 
href="https://pmd.github.io/latest/pmd_userdocs_cpd.html";>CPD</a> 
6.36.0.</p></section><section>
+<p>The following document contains the results of PMD's  <a 
class="externalLink" 
href="https://pmd.github.io/latest/pmd_userdocs_cpd.html";>CPD</a> 
6.52.0.</p></section><section>
 <h2><a name="Duplications"></a>Duplications</h2>
 <p>CPD found no problems in your source code.</p></section>
                       </td>
@@ -293,7 +301,7 @@
     </div>
 
     <div class="footer">
-      <p>Copyright &copy;                    2005-2021
+      <p>Copyright &copy;                    2005-2023
                       <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All Rights Reserved.</p>
                                         


Reply via email to