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 kh...@apache.org on 2022/02/18 18:31:15 UTC

svn commit: r1898194 [17/43] - in /maven/website/components/plugins-archives/maven-source-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/jquery/external/ apidocs/jquery/external/jquery/ apidocs/jquery/images/ apidocs/jquery/jszip-utils/ apidocs/jqu...

Added: maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/search.js
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/search.js (added)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/search.js Fri Feb 18 18:31:13 2022
@@ -0,0 +1,326 @@
+/*
+ * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+var noResult = {l: "No results found"};
+var catModules = "Modules";
+var catPackages = "Packages";
+var catTypes = "Types";
+var catMembers = "Members";
+var catSearchTags = "SearchTags";
+var highlight = "<span class=\"resultHighlight\">$&</span>";
+var camelCaseRegexp = "";
+var secondaryMatcher = "";
+function getHighlightedText(item) {
+    var ccMatcher = new RegExp(camelCaseRegexp);
+    var label = item.replace(ccMatcher, highlight);
+    if (label === item) {
+        label = item.replace(secondaryMatcher, highlight);
+    }
+    return label;
+}
+function getURLPrefix(ui) {
+    var urlPrefix="";
+    if (useModuleDirectories) {
+        var slash = "/";
+        if (ui.item.category === catModules) {
+            return ui.item.l + slash;
+        } else if (ui.item.category === catPackages && ui.item.m) {
+            return ui.item.m + slash;
+        } else if ((ui.item.category === catTypes && ui.item.p) || ui.item.category === catMembers) {
+            $.each(packageSearchIndex, function(index, item) {
+                if (ui.item.p == item.l) {
+                    urlPrefix = item.m + slash;
+                }
+            });
+            return urlPrefix;
+        } else {
+            return urlPrefix;
+        }
+    }
+    return urlPrefix;
+}
+var watermark = 'Search';
+$(function() {
+    $("#search").val('');
+    $("#search").prop("disabled", false);
+    $("#reset").prop("disabled", false);
+    $("#search").val(watermark).addClass('watermark');
+    $("#search").blur(function() {
+        if ($(this).val().length == 0) {
+            $(this).val(watermark).addClass('watermark');
+        }
+    });
+    $("#search").on('click keydown', function() {
+        if ($(this).val() == watermark) {
+            $(this).val('').removeClass('watermark');
+        }
+    });
+    $("#reset").click(function() {
+        $("#search").val('');
+        $("#search").focus();
+    });
+    $("#search").focus();
+    $("#search")[0].setSelectionRange(0, 0);
+});
+$.widget("custom.catcomplete", $.ui.autocomplete, {
+    _create: function() {
+        this._super();
+        this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)");
+    },
+    _renderMenu: function(ul, items) {
+        var rMenu = this,
+                currentCategory = "";
+        rMenu.menu.bindings = $();
+        $.each(items, function(index, item) {
+            var li;
+            if (item.l !== noResult.l && item.category !== currentCategory) {
+                ul.append("<li class=\"ui-autocomplete-category\">" + item.category + "</li>");
+                currentCategory = item.category;
+            }
+            li = rMenu._renderItemData(ul, item);
+            if (item.category) {
+                li.attr("aria-label", item.category + " : " + item.l);
+                li.attr("class", "resultItem");
+            } else {
+                li.attr("aria-label", item.l);
+                li.attr("class", "resultItem");
+            }
+        });
+    },
+    _renderItem: function(ul, item) {
+        var label = "";
+        if (item.category === catModules) {
+            label = getHighlightedText(item.l);
+        } else if (item.category === catPackages) {
+            label = (item.m)
+                    ? getHighlightedText(item.m + "/" + item.l)
+                    : getHighlightedText(item.l);
+        } else if (item.category === catTypes) {
+            label = (item.p)
+                    ? getHighlightedText(item.p + "." + item.l)
+                    : getHighlightedText(item.l);
+        } else if (item.category === catMembers) {
+            label = getHighlightedText(item.p + "." + (item.c + "." + item.l));
+        } else if (item.category === catSearchTags) {
+            label = getHighlightedText(item.l);
+        } else {
+            label = item.l;
+        }
+        var li = $("<li/>").appendTo(ul);
+        var div = $("<div/>").appendTo(li);
+        if (item.category === catSearchTags) {
+            if (item.d) {
+                div.html(label + "<span class=\"searchTagHolderResult\"> (" + item.h + ")</span><br><span class=\"searchTagDescResult\">"
+                                + item.d + "</span><br>");
+            } else {
+                div.html(label + "<span class=\"searchTagHolderResult\"> (" + item.h + ")</span>");
+            }
+        } else {
+            div.html(label);
+        }
+        return li;
+    }
+});
+$(function() {
+    $("#search").catcomplete({
+        minLength: 1,
+        delay: 100,
+        source: function(request, response) {
+            var result = new Array();
+            var presult = new Array();
+            var tresult = new Array();
+            var mresult = new Array();
+            var tgresult = new Array();
+            var secondaryresult = new Array();
+            var displayCount = 0;
+            var exactMatcher = new RegExp("^" + $.ui.autocomplete.escapeRegex(request.term) + "$", "i");
+            camelCaseRegexp = ($.ui.autocomplete.escapeRegex(request.term)).split(/(?=[A-Z])/).join("([a-z0-9_$]*?)");
+            var camelCaseMatcher = new RegExp("^" + camelCaseRegexp);
+            secondaryMatcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
+
+            // Return the nested innermost name from the specified object
+            function nestedName(e) {
+                return e.l.substring(e.l.lastIndexOf(".") + 1);
+            }
+
+            function concatResults(a1, a2) {
+                a1 = a1.concat(a2);
+                a2.length = 0;
+                return a1;
+            }
+
+            if (moduleSearchIndex) {
+                var mdleCount = 0;
+                $.each(moduleSearchIndex, function(index, item) {
+                    item.category = catModules;
+                    if (exactMatcher.test(item.l)) {
+                        result.push(item);
+                        mdleCount++;
+                    } else if (camelCaseMatcher.test(item.l)) {
+                        result.push(item);
+                    } else if (secondaryMatcher.test(item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                displayCount = mdleCount;
+                result = concatResults(result, secondaryresult);
+            }
+            if (packageSearchIndex) {
+                var pCount = 0;
+                var pkg = "";
+                $.each(packageSearchIndex, function(index, item) {
+                    item.category = catPackages;
+                    pkg = (item.m)
+                            ? (item.m + "/" + item.l)
+                            : item.l;
+                    if (exactMatcher.test(item.l)) {
+                        presult.push(item);
+                        pCount++;
+                    } else if (camelCaseMatcher.test(pkg)) {
+                        presult.push(item);
+                    } else if (secondaryMatcher.test(pkg)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(presult, secondaryresult));
+                displayCount = (pCount > displayCount) ? pCount : displayCount;
+            }
+            if (typeSearchIndex) {
+                var tCount = 0;
+                $.each(typeSearchIndex, function(index, item) {
+                    item.category = catTypes;
+                    var s = nestedName(item);
+                    if (exactMatcher.test(s)) {
+                        tresult.push(item);
+                        tCount++;
+                    } else if (camelCaseMatcher.test(s)) {
+                        tresult.push(item);
+                    } else if (secondaryMatcher.test(item.p + "." + item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(tresult, secondaryresult));
+                displayCount = (tCount > displayCount) ? tCount : displayCount;
+            }
+            if (memberSearchIndex) {
+                var mCount = 0;
+                $.each(memberSearchIndex, function(index, item) {
+                    item.category = catMembers;
+                    var s = nestedName(item);
+                    if (exactMatcher.test(s)) {
+                        mresult.push(item);
+                        mCount++;
+                    } else if (camelCaseMatcher.test(s)) {
+                        mresult.push(item);
+                    } else if (secondaryMatcher.test(item.c + "." + item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(mresult, secondaryresult));
+                displayCount = (mCount > displayCount) ? mCount : displayCount;
+            }
+            if (tagSearchIndex) {
+                var tgCount = 0;
+                $.each(tagSearchIndex, function(index, item) {
+                    item.category = catSearchTags;
+                    if (exactMatcher.test(item.l)) {
+                        tgresult.push(item);
+                        tgCount++;
+                    } else if (secondaryMatcher.test(item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(tgresult, secondaryresult));
+                displayCount = (tgCount > displayCount) ? tgCount : displayCount;
+            }
+            displayCount = (displayCount > 500) ? displayCount : 500;
+            var counter = function() {
+                var count = {Modules: 0, Packages: 0, Types: 0, Members: 0, SearchTags: 0};
+                var f = function(item) {
+                    count[item.category] += 1;
+                    return (count[item.category] <= displayCount);
+                };
+                return f;
+            }();
+            response(result.filter(counter));
+        },
+        response: function(event, ui) {
+            if (!ui.content.length) {
+                ui.content.push(noResult);
+            } else {
+                $("#search").empty();
+            }
+        },
+        autoFocus: true,
+        position: {
+            collision: "flip"
+        },
+        select: function(event, ui) {
+            if (ui.item.l !== noResult.l) {
+                var url = getURLPrefix(ui);
+                if (ui.item.category === catModules) {
+                    if (useModuleDirectories) {
+                        url += "module-summary.html";
+                    } else {
+                        url = ui.item.l + "-summary.html";
+                    }
+                } else if (ui.item.category === catPackages) {
+                    if (ui.item.url) {
+                        url = ui.item.url;
+                    } else {
+                    url += ui.item.l.replace(/\./g, '/') + "/package-summary.html";
+                    }
+                } else if (ui.item.category === catTypes) {
+                    if (ui.item.url) {
+                        url = ui.item.url;
+                    } else if (ui.item.p === "<Unnamed>") {
+                        url += ui.item.l + ".html";
+                    } else {
+                        url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html";
+                    }
+                } else if (ui.item.category === catMembers) {
+                    if (ui.item.p === "<Unnamed>") {
+                        url += ui.item.c + ".html" + "#";
+                    } else {
+                        url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#";
+                    }
+                    if (ui.item.url) {
+                        url += ui.item.url;
+                    } else {
+                        url += ui.item.l;
+                    }
+                } else if (ui.item.category === catSearchTags) {
+                    url += ui.item.u;
+                }
+                if (top !== window) {
+                    parent.classFrame.location = pathtoroot + url;
+                } else {
+                    window.location.href = pathtoroot + url;
+                }
+                $("#search").focus();
+            }
+        }
+    });
+});
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/stylesheet.css
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/stylesheet.css (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/stylesheet.css Fri Feb 18 18:31:13 2022
@@ -1,73 +1,109 @@
-/* Javadoc style sheet */
+/* 
+ * Javadoc style sheet
+ */
+
+@import url('resources/fonts/dejavu.css');
+
 /*
-Overall document style
-*/
+ * Styles for individual HTML elements.
+ *
+ * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
+ * HTML element throughout the page.
+ */
+
 body {
     background-color:#ffffff;
     color:#353833;
-    font-family:Arial, Helvetica, sans-serif;
-    font-size:76%;
+    font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
+    font-size:14px;
     margin:0;
+    padding:0;
+    height:100%;
+    width:100%;
+}
+iframe {
+    margin:0;
+    padding:0;
+    height:100%;
+    width:100%;
+    overflow-y:scroll;
+    border:none;
 }
 a:link, a:visited {
     text-decoration:none;
-    color:#4c6b87;
+    color:#4A6782;
 }
-a:hover, a:focus {
+a[href]:hover, a[href]:focus {
     text-decoration:none;
     color:#bb7a2a;
 }
-a:active {
-    text-decoration:none;
-    color:#4c6b87;
-}
 a[name] {
     color:#353833;
 }
-a[name]:hover {
-    text-decoration:none;
-    color:#353833;
+a[name]:before, a[name]:target, a[id]:before, a[id]:target {
+    content:"";
+    display:inline-block;
+    position:relative;
+    padding-top:129px;
+    margin-top:-129px;
 }
 pre {
-    font-size:1.3em;
+    font-family:'DejaVu Sans Mono', monospace;
+    font-size:14px;
 }
 h1 {
-    font-size:1.8em;
+    font-size:20px;
 }
 h2 {
-    font-size:1.5em;
+    font-size:18px;
 }
 h3 {
-    font-size:1.4em;
+    font-size:16px;
+    font-style:italic;
 }
 h4 {
-    font-size:1.3em;
+    font-size:13px;
 }
 h5 {
-    font-size:1.2em;
+    font-size:12px;
 }
 h6 {
-    font-size:1.1em;
+    font-size:11px;
 }
 ul {
     list-style-type:disc;
 }
 code, tt {
-    font-size:1.2em;
+    font-family:'DejaVu Sans Mono', monospace;
+    font-size:14px;
+    padding-top:4px;
+    margin-top:8px;
+    line-height:1.4em;
 }
 dt code {
-    font-size:1.2em;
+    font-family:'DejaVu Sans Mono', monospace;
+    font-size:14px;
+    padding-top:4px;
 }
 table tr td dt code {
-    font-size:1.2em;
+    font-family:'DejaVu Sans Mono', monospace;
+    font-size:14px;
     vertical-align:top;
+    padding-top:4px;
 }
 sup {
-    font-size:.6em;
+    font-size:8px;
 }
+
 /*
-Document title and Copyright styles
-*/
+ * Styles for HTML generated by javadoc.
+ *
+ * These are style classes that are used by the standard doclet to generate HTML documentation.
+ */
+
+/*
+ * Styles for document title and copyright.
+ */
 .clear {
     clear:both;
     height:0px;
@@ -76,9 +112,9 @@ Document title and Copyright styles
 .aboutLanguage {
     float:right;
     padding:0px 21px;
-    font-size:.8em;
+    font-size:11px;
     z-index:200;
-    margin-top:-7px;
+    margin-top:-9px;
 }
 .legalCopy {
     margin-left:.5em;
@@ -92,29 +128,33 @@ Document title and Copyright styles
 }
 .tab {
     background-color:#0066FF;
-    background-image:url(resources/titlebar.gif);
-    background-position:left top;
-    background-repeat:no-repeat;
     color:#ffffff;
     padding:8px;
     width:5em;
     font-weight:bold;
 }
 /*
-Navigation bar styles
-*/
+ * Styles for navigation bar.
+ */
 .bar {
-    background-image:url(resources/background.gif);
-    background-repeat:repeat-x;
+    background-color:#4D7A97;
     color:#FFFFFF;
     padding:.8em .5em .4em .8em;
     height:auto;/*height:1.8em;*/
-    font-size:1em;
+    font-size:11px;
     margin:0;
 }
+.navPadding {
+    padding-top: 107px;
+}
+.fixedNav {
+    position:fixed;
+    width:100%;
+    z-index:999;
+    background-color:#ffffff;
+}
 .topNav {
-    background-image:url(resources/background.gif);
-    background-repeat:repeat-x;
+    background-color:#4D7A97;
     color:#FFFFFF;
     float:left;
     padding:0;
@@ -123,11 +163,11 @@ Navigation bar styles
     height:2.8em;
     padding-top:10px;
     overflow:hidden;
+    font-size:12px; 
 }
 .bottomNav {
     margin-top:10px;
-    background-image:url(resources/background.gif);
-    background-repeat:repeat-x;
+    background-color:#4D7A97;
     color:#FFFFFF;
     float:left;
     padding:0;
@@ -136,18 +176,20 @@ Navigation bar styles
     height:2.8em;
     padding-top:10px;
     overflow:hidden;
+    font-size:12px;
 }
 .subNav {
     background-color:#dee3e9;
-    border-bottom:1px solid #9eadc0;
     float:left;
     width:100%;
     overflow:hidden;
+    font-size:12px;
 }
 .subNav div {
     clear:left;
     float:left;
     padding:0 0 5px 6px;
+    text-transform:uppercase;
 }
 ul.navList, ul.subNavList {
     float:left;
@@ -157,42 +199,74 @@ ul.navList, ul.subNavList {
 ul.navList li{
     list-style:none;
     float:left;
-    padding:3px 6px;
+    padding: 5px 6px;
+    text-transform:uppercase;
+}
+ul.navListSearch {
+    float:right;
+    margin:0 0 0 0;
+    padding:0;
 }
-ul.subNavList li{
+ul.navListSearch li {
+    list-style:none;
+    float:right;
+    padding: 5px 6px;
+    text-transform:uppercase;
+}
+ul.navListSearch li label {
+    position:relative;
+    right:-16px;
+}
+ul.subNavList li {
     list-style:none;
     float:left;
-    font-size:90%;
 }
 .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
     color:#FFFFFF;
     text-decoration:none;
+    text-transform:uppercase;
 }
 .topNav a:hover, .bottomNav a:hover {
     text-decoration:none;
     color:#bb7a2a;
+    text-transform:uppercase;
 }
 .navBarCell1Rev {
-    background-image:url(resources/tab.gif);
-    background-color:#a88834;
-    color:#FFFFFF;
+    background-color:#F8981D;
+    color:#253441;
     margin: auto 5px;
-    border:1px solid #c9aa44;
+}
+.skipNav {
+    position:absolute;
+    top:auto;
+    left:-9999px;
+    overflow:hidden;
 }
 /*
-Page header and footer styles
-*/
+ * Styles for page header and footer.
+ */
 .header, .footer {
     clear:both;
     margin:0 20px;
     padding:5px 0 0 0;
 }
-.indexHeader {
-    margin:10px;
+.indexNav {
     position:relative;
+    font-size:12px;
+    background-color:#dee3e9;
 }
-.indexHeader h1 {
-    font-size:1.3em;
+.indexNav ul {
+    margin-top:0;
+    padding:5px;
+}
+.indexNav ul li {
+    display:inline;
+    list-style-type:none;
+    padding-right:10px;
+    text-transform:uppercase;
+}
+.indexNav h1 {
+    font-size:13px;
 }
 .title {
     color:#2c4557;
@@ -202,7 +276,7 @@ Page header and footer styles
     margin:5px 0 0 0;
 }
 .header ul {
-    margin:0 0 25px 0;
+    margin:0 0 15px 0;
     padding:0;
 }
 .footer ul {
@@ -210,24 +284,22 @@ Page header and footer styles
 }
 .header ul li, .footer ul li {
     list-style:none;
-    font-size:1.2em;
+    font-size:13px;
 }
 /*
-Heading styles
-*/
+ * Styles for headings.
+ */
 div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
     background-color:#dee3e9;
-    border-top:1px solid #9eadc0;
-    border-bottom:1px solid #9eadc0;
+    border:1px solid #d0d9e0;
     margin:0 0 6px -8px;
-    padding:2px 5px;
+    padding:7px 5px;
 }
 ul.blockList ul.blockList ul.blockList li.blockList h3 {
     background-color:#dee3e9;
-    border-top:1px solid #9eadc0;
-    border-bottom:1px solid #9eadc0;
+    border:1px solid #d0d9e0;
     margin:0 0 6px -8px;
-    padding:2px 5px;
+    padding:7px 5px;
 }
 ul.blockList ul.blockList li.blockList h3 {
     padding:0;
@@ -237,9 +309,10 @@ ul.blockList li.blockList h2 {
     padding:0px 0 20px 0;
 }
 /*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
+ * Styles for page layout containers.
+ */
+.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer,
+.allClassesContainer, .allPackagesContainer {
     clear:both;
     padding:10px 20px;
     position:relative;
@@ -247,10 +320,10 @@ Page layout container styles
 .indexContainer {
     margin:10px;
     position:relative;
-    font-size:1.0em;
+    font-size:12px;
 }
 .indexContainer h2 {
-    font-size:1.1em;
+    font-size:13px;
     padding:0 0 3px 0;
 }
 .indexContainer ul {
@@ -259,15 +332,18 @@ Page layout container styles
 }
 .indexContainer ul li {
     list-style:none;
+    padding-top:2px;
 }
 .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
-    font-size:1.1em;
+    font-size:12px;
     font-weight:bold;
     margin:10px 0 0 0;
     color:#4E4E4E;
 }
 .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
-    margin:10px 0 10px 20px;
+    margin:5px 0 10px 0px;
+    font-size:14px;
+    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
 }
 .serializedFormContainer dl.nameValue dt {
     margin-left:1px;
@@ -281,8 +357,11 @@ Page layout container styles
     display:inline;
 }
 /*
-List styles
-*/
+ * Styles for lists.
+ */
+li.circle {
+    list-style:circle;
+}
 ul.horizontal li {
     display:inline;
     font-size:0.9em;
@@ -306,25 +385,24 @@ ul.blockList, ul.blockListLast {
 }
 ul.blockList li.blockList, ul.blockListLast li.blockList {
     list-style:none;
-    margin-bottom:25px;
+    margin-bottom:15px;
+    line-height:1.4;
 }
 ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
     padding:0px 20px 5px 10px;
-    border:1px solid #9eadc0;
-    background-color:#f9f9f9;
+    border:1px solid #ededed; 
+    background-color:#f8f8f8;
 }
 ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
     padding:0 0 5px 8px;
     background-color:#ffffff;
-    border:1px solid #9eadc0;
-    border-top:none;
+    border:none;
 }
 ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
     margin-left:0;
     padding-left:0;
     padding-bottom:15px;
     border:none;
-    border-bottom:1px solid #9eadc0;
 }
 ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
     list-style:none;
@@ -336,113 +414,207 @@ table tr td dl, table tr td dl dt, table
     margin-bottom:1px;
 }
 /*
-Table styles
-*/
-.contentContainer table, .classUseContainer table, .constantValuesContainer table {
-    border-bottom:1px solid #9eadc0;
-    width:100%;
-}
-.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table {
+ * Styles for tables.
+ */
+.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary,
+.requiresSummary, .packagesSummary, .providesSummary, .usesSummary {
     width:100%;
+    border-spacing:0;
+    border-left:1px solid #EEE; 
+    border-right:1px solid #EEE; 
+    border-bottom:1px solid #EEE; 
 }
-.contentContainer .description table, .contentContainer .details table {
-    border-bottom:none;
-}
-.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{
-    vertical-align:top;
-    padding-right:20px;
-}
-.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast,
-.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast,
-.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne,
-.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne {
-    padding-right:3px;
+.overviewSummary, .memberSummary, .requiresSummary, .packagesSummary, .providesSummary, .usesSummary  {
+    padding:0px;
 }
-.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption {
+.overviewSummary caption, .memberSummary caption, .typeSummary caption,
+.useSummary caption, .constantsSummary caption, .deprecatedSummary caption,
+.requiresSummary caption, .packagesSummary caption, .providesSummary caption, .usesSummary caption {
     position:relative;
     text-align:left;
     background-repeat:no-repeat;
-    color:#FFFFFF;
+    color:#253441;
     font-weight:bold;
     clear:none;
     overflow:hidden;
     padding:0px;
+    padding-top:10px;
+    padding-left:1px;
     margin:0px;
+    white-space:pre;
 }
-caption a:link, caption a:hover, caption a:active, caption a:visited {
+.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
+.constantsSummary caption a:link, .deprecatedSummary caption a:link,
+.requiresSummary caption a:link, .packagesSummary caption a:link, .providesSummary caption a:link,
+.usesSummary caption a:link,
+.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
+.constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
+.requiresSummary caption a:hover, .packagesSummary caption a:hover, .providesSummary caption a:hover,
+.usesSummary caption a:hover,
+.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
+.constantsSummary caption a:active, .deprecatedSummary caption a:active,
+.requiresSummary caption a:active, .packagesSummary caption a:active, .providesSummary caption a:active,
+.usesSummary caption a:active,
+.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
+.constantsSummary caption a:visited, .deprecatedSummary caption a:visited,
+.requiresSummary caption a:visited, .packagesSummary caption a:visited, .providesSummary caption a:visited,
+.usesSummary caption a:visited {
     color:#FFFFFF;
 }
-.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span {
+.useSummary caption a:link, .useSummary caption a:hover, .useSummary caption a:active,
+.useSummary caption a:visited {
+    color:#1f389c;
+}
+.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
+.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span,
+.requiresSummary caption span, .packagesSummary caption span, .providesSummary caption span,
+.usesSummary caption span {
     white-space:nowrap;
-    padding-top:8px;
-    padding-left:8px;
-    display:block;
+    padding-top:5px;
+    padding-left:12px;
+    padding-right:12px;
+    padding-bottom:7px;
+    display:inline-block;
     float:left;
-    background-image:url(resources/titlebar.gif);
-    height:18px;
+    background-color:#F8981D;
+    border: none;
+    height:16px;
 }
-.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd {
-    width:10px;
-    background-image:url(resources/titlebar_end.gif);
-    background-repeat:no-repeat;
-    background-position:top right;
-    position:relative;
+.memberSummary caption span.activeTableTab span, .packagesSummary caption span.activeTableTab span,
+.overviewSummary caption span.activeTableTab span, .typeSummary caption span.activeTableTab span {
+    white-space:nowrap;
+    padding-top:5px;
+    padding-left:12px;
+    padding-right:12px;
+    margin-right:3px;
+    display:inline-block;
     float:left;
+    background-color:#F8981D;
+    height:16px;
 }
-ul.blockList ul.blockList li.blockList table {
-    margin:0 0 12px 0px;
-    width:100%;
+.memberSummary caption span.tableTab span, .packagesSummary caption span.tableTab span,
+.overviewSummary caption span.tableTab span, .typeSummary caption span.tableTab span {
+    white-space:nowrap;
+    padding-top:5px;
+    padding-left:12px;
+    padding-right:12px;
+    margin-right:3px;
+    display:inline-block;
+    float:left;
+    background-color:#4D7A97;
+    height:16px;
 }
-.tableSubHeadingColor {
-    background-color: #EEEEFF;
+.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab,
+.packagesSummary caption span.tableTab, .packagesSummary caption span.activeTableTab,
+.overviewSummary caption span.tableTab, .overviewSummary caption span.activeTableTab,
+.typeSummary caption span.tableTab, .typeSummary caption span.activeTableTab {
+    padding-top:0px;
+    padding-left:0px;
+    padding-right:0px;
+    background-image:none;
+    float:none;
+    display:inline;
 }
-.altColor {
-    background-color:#eeeeef;
+.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
+.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd,
+.requiresSummary .tabEnd, .packagesSummary .tabEnd, .providesSummary .tabEnd, .usesSummary .tabEnd {
+    display:none;
+    width:5px;
+    position:relative;
+    float:left;
+    background-color:#F8981D;
 }
-.rowColor {
-    background-color:#ffffff;
+.memberSummary .activeTableTab .tabEnd, .packagesSummary .activeTableTab .tabEnd,
+.overviewSummary .activeTableTab .tabEnd, .typeSummary .activeTableTab .tabEnd {
+    display:none;
+    width:5px;
+    margin-right:3px;
+    position:relative; 
+    float:left;
+    background-color:#F8981D;
+}
+.memberSummary .tableTab .tabEnd, .packagesSummary .tableTab .tabEnd,
+.overviewSummary .tableTab .tabEnd, .typeSummary .tableTab .tabEnd {
+    display:none;
+    width:5px;
+    margin-right:3px;
+    position:relative;
+    background-color:#4D7A97;
+    float:left;
+}
+.rowColor th, .altColor th {
+    font-weight:normal;
 }
-.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td {
+.overviewSummary td, .memberSummary td, .typeSummary td,
+.useSummary td, .constantsSummary td, .deprecatedSummary td,
+.requiresSummary td, .packagesSummary td, .providesSummary td, .usesSummary td {
     text-align:left;
-    padding:3px 3px 3px 7px;
+    padding:0px 0px 12px 10px;
 }
-th.colFirst, th.colLast, th.colOne, .constantValuesContainer th {
+th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .useSummary th,
+.constantsSummary th, .packagesSummary th, td.colFirst, td.colSecond, td.colLast, .useSummary td,
+.constantsSummary td {
+    vertical-align:top;
+    padding-right:0px;
+    padding-top:8px;
+    padding-bottom:3px;
+}
+th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .constantsSummary th,
+.packagesSummary th {
     background:#dee3e9;
-    border-top:1px solid #9eadc0;
-    border-bottom:1px solid #9eadc0;
     text-align:left;
-    padding:3px 3px 3px 7px;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
-    font-weight:bold;
+    padding:8px 3px 3px 7px;
 }
 td.colFirst, th.colFirst {
-    border-left:1px solid #9eadc0;
-    white-space:nowrap;
+    font-size:13px;
 }
-td.colLast, th.colLast {
-    border-right:1px solid #9eadc0;
+td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast {
+    font-size:13px;
 }
-td.colOne, th.colOne {
-    border-right:1px solid #9eadc0;
-    border-left:1px solid #9eadc0;
+.constantsSummary th, .packagesSummary th {
+    font-size:13px;
 }
-table.overviewSummary  {
-    padding:0px;
-    margin-left:0px;
+.providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst,
+.providesSummary td.colLast {
+    white-space:normal;
+    font-size:13px;
+}
+.overviewSummary td.colFirst, .overviewSummary th.colFirst,
+.requiresSummary td.colFirst, .requiresSummary th.colFirst,
+.packagesSummary td.colFirst, .packagesSummary td.colSecond, .packagesSummary th.colFirst, .packagesSummary th,
+.usesSummary td.colFirst, .usesSummary th.colFirst,
+.providesSummary td.colFirst, .providesSummary th.colFirst,
+.memberSummary td.colFirst, .memberSummary th.colFirst,
+.memberSummary td.colSecond, .memberSummary th.colSecond, .memberSummary th.colConstructorName,
+.typeSummary td.colFirst, .typeSummary th.colFirst {
+    vertical-align:top;
 }
-table.overviewSummary td.colFirst, table.overviewSummary th.colFirst,
-table.overviewSummary td.colOne, table.overviewSummary th.colOne {
-    width:25%;
-    vertical-align:middle;
+.packagesSummary th.colLast, .packagesSummary td.colLast {
+    white-space:normal;
 }
-table.packageSummary td.colFirst, table.overviewSummary th.colFirst {
-    width:25%;
-    vertical-align:middle;
+td.colFirst a:link, td.colFirst a:visited,
+td.colSecond a:link, td.colSecond a:visited,
+th.colFirst a:link, th.colFirst a:visited,
+th.colSecond a:link, th.colSecond a:visited,
+th.colConstructorName a:link, th.colConstructorName a:visited,
+th.colDeprecatedItemName a:link, th.colDeprecatedItemName a:visited, 
+.constantValuesContainer td a:link, .constantValuesContainer td a:visited, 
+.allClassesContainer td a:link, .allClassesContainer td a:visited, 
+.allPackagesContainer td a:link, .allPackagesContainer td a:visited {
+    font-weight:bold;
+}
+.tableSubHeadingColor {
+    background-color:#EEEEFF;
+}
+.altColor, .altColor th {
+    background-color:#FFFFFF;
+}
+.rowColor, .rowColor th {
+    background-color:#EEEEEF;
 }
 /*
-Content styles
-*/
+ * Styles for contents.
+ */
 .description pre {
     margin-top:0;
 }
@@ -453,9 +625,22 @@ Content styles
 .docSummary {
     padding:0;
 }
+ul.blockList ul.blockList ul.blockList li.blockList h3 {
+    font-style:normal;
+}
+div.block {
+    font-size:14px;
+    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
+}
+td.colLast div {
+    padding-top:0px;
+}
+td.colLast a {
+    padding-bottom:3px;
+}
 /*
-Formatting effect styles
-*/
+ * Styles for formatting effect.
+ */
 .sourceLineNo {
     color:green;
     padding:0 30px 0 0;
@@ -463,12 +648,259 @@ Formatting effect styles
 h1.hidden {
     visibility:hidden;
     overflow:hidden;
-    font-size:.9em;
+    font-size:10px;
 }
 .block {
     display:block;
-    margin:3px 0 0 0;
+    margin:3px 10px 2px 0px;
+    color:#474747;
 }
-.strong {
+.deprecatedLabel, .descfrmTypeLabel, .implementationLabel, .memberNameLabel, .memberNameLink,
+.moduleLabelInPackage, .moduleLabelInType, .overrideSpecifyLabel, .packageLabelInType,
+.packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel,
+.throwsLabel, .typeNameLabel, .typeNameLink, .searchTagLink {
     font-weight:bold;
+}
+.deprecationComment, .emphasizedPhrase, .interfaceName {
+    font-style:italic;
+}
+.deprecationBlock {
+    font-size:14px;
+    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
+    border-style:solid;
+    border-width:thin;
+    border-radius:10px;
+    padding:10px;
+    margin-bottom:10px;
+    margin-right:10px;
+    display:inline-block;
+}
+div.block div.deprecationComment, div.block div.block span.emphasizedPhrase,
+div.block div.block span.interfaceName {
+    font-style:normal;
+}
+div.contentContainer ul.blockList li.blockList h2 {
+    padding-bottom:0px;
+}
+/*
+ * Styles for IFRAME.
+ */
+.mainContainer {
+    margin:0 auto; 
+    padding:0; 
+    height:100%; 
+    width:100%; 
+    position:fixed; 
+    top:0; 
+    left:0;
+}
+.leftContainer {
+    height:100%;
+    position:fixed;
+    width:320px;
+}
+.leftTop {
+    position:relative;
+    float:left;
+    width:315px;
+    top:0;
+    left:0;
+    height:30%;
+    border-right:6px solid #ccc;
+    border-bottom:6px solid #ccc;
+}
+.leftBottom {
+    position:relative;
+    float:left;
+    width:315px;
+    bottom:0;
+    left:0;
+    height:70%;
+    border-right:6px solid #ccc;
+    border-top:1px solid #000;
+}
+.rightContainer {
+    position:absolute;
+    left:320px;
+    top:0;
+    bottom:0;
+    height:100%;
+    right:0;
+    border-left:1px solid #000;
+}
+.rightIframe {
+    margin:0;
+    padding:0;
+    height:100%;
+    right:30px;
+    width:100%;
+    overflow:visible;
+    margin-bottom:30px;
+}
+/*
+ * Styles specific to HTML5 elements.
+ */
+main, nav, header, footer, section {
+    display:block;
+}
+/*
+ * Styles for javadoc search.
+ */
+.ui-autocomplete-category {
+    font-weight:bold;
+    font-size:15px;
+    padding:7px 0 7px 3px;
+    background-color:#4D7A97;
+    color:#FFFFFF;
+}
+.resultItem {
+    font-size:13px;
+}
+.ui-autocomplete {
+    max-height:85%;
+    max-width:65%;
+    overflow-y:scroll;
+    overflow-x:scroll;
+    white-space:nowrap;
+    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
+}
+ul.ui-autocomplete {
+    position:fixed;
+    z-index:999999;
+}
+ul.ui-autocomplete  li {
+    float:left;
+    clear:both;
+    width:100%;
+}
+.resultHighlight {
+    font-weight:bold;
+}
+#search {
+    background-image:url('resources/glass.png');
+    background-size:13px;
+    background-repeat:no-repeat;
+    background-position:2px 3px;
+    padding-left:20px;
+    position:relative;
+    right:-18px;
+}
+#reset {
+    background-color: rgb(255,255,255);
+    background-image:url('resources/x.png');
+    background-position:center;
+    background-repeat:no-repeat;
+    background-size:12px;
+    border:0 none;
+    width:16px;
+    height:17px;
+    position:relative;
+    left:-4px;
+    top:-4px;
+    font-size:0px;
+}
+.watermark {
+    color:#545454;
+}
+.searchTagDescResult {
+    font-style:italic;
+    font-size:11px;
+}
+.searchTagHolderResult {
+    font-style:italic;
+    font-size:12px;
+}
+.searchTagResult:before, .searchTagResult:target {
+    color:red;
+}
+.moduleGraph span {
+    display:none;
+    position:absolute;
+}
+.moduleGraph:hover span {
+    display:block;
+    margin: -100px 0 0 100px;
+    z-index: 1;
+}
+.methodSignature {
+    white-space:normal;
+}
+
+/*
+ * Styles for user-provided tables.
+ *
+ * borderless:
+ *      No borders, vertical margins, styled caption.
+ *      This style is provided for use with existing doc comments.
+ *      In general, borderless tables should not be used for layout purposes.
+ *
+ * plain:
+ *      Plain borders around table and cells, vertical margins, styled caption.
+ *      Best for small tables or for complex tables for tables with cells that span
+ *      rows and columns, when the "striped" style does not work well.
+ *
+ * striped:
+ *      Borders around the table and vertical borders between cells, striped rows,
+ *      vertical margins, styled caption.
+ *      Best for tables that have a header row, and a body containing a series of simple rows.
+ */
+
+table.borderless,
+table.plain,
+table.striped {
+    margin-top: 10px;
+    margin-bottom: 10px;
+}
+table.borderless > caption,
+table.plain > caption,
+table.striped > caption {
+    font-weight: bold;
+    font-size: smaller;
+}
+table.borderless th, table.borderless td,
+table.plain th, table.plain td,
+table.striped th, table.striped td {
+    padding: 2px 5px;
+}
+table.borderless,
+table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
+table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td {
+    border: none;
+}
+table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr {
+    background-color: transparent;
+}
+table.plain {
+    border-collapse: collapse;
+    border: 1px solid black;
+}
+table.plain > thead > tr, table.plain > tbody tr, table.plain > tr {
+    background-color: transparent;
+}
+table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th,
+table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td {
+    border: 1px solid black;
+}
+table.striped {
+    border-collapse: collapse;
+    border: 1px solid black;
+}
+table.striped > thead {
+    background-color: #E3E3E3;
+}
+table.striped > thead > tr > th, table.striped > thead > tr > td {
+    border: 1px solid black;
+}
+table.striped > tbody > tr:nth-child(even) {
+    background-color: #EEE
+}
+table.striped > tbody > tr:nth-child(odd) {
+    background-color: #FFF
+}
+table.striped > tbody > tr > th, table.striped > tbody > tr > td {
+    border-left: 1px solid black;
+    border-right: 1px solid black;
+}
+table.striped > tbody > tr > th {
+    font-weight: normal;
 }
\ No newline at end of file

Added: maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/type-search-index.js
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/type-search-index.js (added)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/type-search-index.js Fri Feb 18 18:31:13 2022
@@ -0,0 +1 @@
+typeSearchIndex = [{"p":"org.apache.maven.plugins.source","l":"AbstractSourceJarMojo"},{"p":"org.apache.maven.plugins.source","l":"AggregatorSourceJarMojo"},{"l":"All Classes","url":"allclasses-index.html"},{"p":"org.apache.maven.plugins.source","l":"HelpMojo"},{"p":"org.apache.maven.plugins.source","l":"SourceJarMojo"},{"p":"org.apache.maven.plugins.source","l":"SourceJarNoForkMojo"},{"p":"org.apache.maven.plugins.source","l":"TestSourceGeneratedJarMojo"},{"p":"org.apache.maven.plugins.source","l":"TestSourceJarMojo"},{"p":"org.apache.maven.plugins.source","l":"TestSourceJarNoForkMojo"}]
\ No newline at end of file

Added: maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/type-search-index.zip
==============================================================================
Binary file - no diff available.

Propchange: maven/website/components/plugins-archives/maven-source-plugin-LATEST/apidocs/type-search-index.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/checkstyle.html
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/checkstyle.html (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/checkstyle.html Fri Feb 18 18:31:13 2022
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-checkstyle-plugin:3.0.0:checkstyle at 2019-10-29
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-checkstyle-plugin:3.0.0:checkstyle at 2022-02-18
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <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="20191029" />
+    <meta name="Date-Revision-yyyymmdd" content="20220218" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Maven Source Plugin &#x2013; Checkstyle Results</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -41,8 +41,8 @@
       <li class=""><a href="../index.html" title="Plugins">Plugins</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="Apache Maven Source Plugin">Apache Maven Source Plugin</a><span class="divider">/</span></li>
     <li class="active ">Checkstyle Results</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2019-10-29</li>
-          <li id="projectVersion" class="pull-right">Version: 3.2.0</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-02-18</li>
+          <li id="projectVersion" class="pull-right">Version: 3.2.1</li>
         </ul>
       </div>
       <div class="row-fluid">
@@ -72,7 +72,6 @@
     <li><a href="findbugs.html" title="FindBugs"><span class="none"></span>FindBugs</a></li>
     <li><a href="sonar.html" title="Sonar"><span class="none"></span>Sonar</a></li>
     <li><a href="plugin-info.html" title="Plugin Documentation"><span class="none"></span>Plugin Documentation</a></li>
-    <li><a href="invoker-report.html" title="Invoker Build Results"><span class="none"></span>Invoker Build Results</a></li>
     </ul>
 </li>
       <li class="nav-header">Maven Projects</li>
@@ -129,7 +128,7 @@
 <th><img src="images/icon_warning_sml.gif" alt="" />&#160;Warnings</th>
 <th><img src="images/icon_error_sml.gif" alt="" />&#160;Errors</th></tr>
 <tr class="b">
-<td>1</td>
+<td>7</td>
 <td>0</td>
 <td>0</td>
 <td>0</td></tr></table></div>
@@ -158,7 +157,7 @@
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-            <p>Copyright &copy;2002&#x2013;2019
+            <p>Copyright &copy;2002&#x2013;2022
 <a href="https://www.apache.org/">The Apache Software Foundation</a>.
 All rights reserved.</p>
         </div>

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/checkstyle.rss
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/checkstyle.rss (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/checkstyle.rss Fri Feb 18 18:31:13 2022
@@ -23,9 +23,9 @@ under the License.
     <link>https://maven.apache.org/plugins/maven-source-plugin/</link>
     <description>Apache Maven Source Plugin - Checkstyle report</description>
     <language>en-us</language>
-    <copyright>&#169;2002 - 2019 The Apache Software Foundation</copyright>
+    <copyright>&#169;2002 - 2022 The Apache Software Foundation</copyright>
     <item>
-      <title>File: 1,
+      <title>File: 7,
              Errors: 0,
              Warnings: 0,
              Infos: 0
@@ -50,6 +50,90 @@ under the License.
                 </td>
                 <td>
                   0
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/plugins/maven-source-plugin//checkstyle.html#org.apache.maven.plugins.source.SourceJarNoForkMojo.java">org/apache/maven/plugins/source/SourceJarNoForkMojo.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/plugins/maven-source-plugin//checkstyle.html#org.apache.maven.plugins.source.SourceJarMojo.java">org/apache/maven/plugins/source/SourceJarMojo.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/plugins/maven-source-plugin//checkstyle.html#org.apache.maven.plugins.source.AggregatorSourceJarMojo.java">org/apache/maven/plugins/source/AggregatorSourceJarMojo.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/plugins/maven-source-plugin//checkstyle.html#org.apache.maven.plugins.source.TestSourceJarNoForkMojo.java">org/apache/maven/plugins/source/TestSourceJarNoForkMojo.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/plugins/maven-source-plugin//checkstyle.html#org.apache.maven.plugins.source.TestSourceJarMojo.java">org/apache/maven/plugins/source/TestSourceJarMojo.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/plugins/maven-source-plugin//checkstyle.html#org.apache.maven.plugins.source.TestSourceGeneratedJarMojo.java">org/apache/maven/plugins/source/TestSourceGeneratedJarMojo.java</a>
+                </td>
+                <td>
+                  0
                 </td>
                 <td>
                   0

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/ci-management.html
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/ci-management.html (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/ci-management.html Fri Feb 18 18:31:13 2022
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:ci-management at 2019-10-29
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:ci-management at 2022-02-18
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <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="20191029" />
+    <meta name="Date-Revision-yyyymmdd" content="20220218" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Maven Source Plugin &#x2013; CI Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -41,8 +41,8 @@
       <li class=""><a href="../index.html" title="Plugins">Plugins</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="Apache Maven Source Plugin">Apache Maven Source Plugin</a><span class="divider">/</span></li>
     <li class="active ">CI Management</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2019-10-29</li>
-          <li id="projectVersion" class="pull-right">Version: 3.2.0</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-02-18</li>
+          <li id="projectVersion" class="pull-right">Version: 3.2.1</li>
         </ul>
       </div>
       <div class="row-fluid">
@@ -137,7 +137,7 @@
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-            <p>Copyright &copy;2002&#x2013;2019
+            <p>Copyright &copy;2002&#x2013;2022
 <a href="https://www.apache.org/">The Apache Software Foundation</a>.
 All rights reserved.</p>
         </div>

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependencies.html
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependencies.html (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependencies.html Fri Feb 18 18:31:13 2022
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:dependencies at 2019-10-29
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:dependencies at 2022-02-18
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <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="20191029" />
+    <meta name="Date-Revision-yyyymmdd" content="20220218" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Maven Source Plugin &#x2013; Project Dependencies</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -41,8 +41,8 @@
       <li class=""><a href="../index.html" title="Plugins">Plugins</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="Apache Maven Source Plugin">Apache Maven Source Plugin</a><span class="divider">/</span></li>
     <li class="active ">Project Dependencies</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2019-10-29</li>
-          <li id="projectVersion" class="pull-right">Version: 3.2.0</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-02-18</li>
+          <li id="projectVersion" class="pull-right">Version: 3.2.1</li>
         </ul>
       </div>
       <div class="row-fluid">
@@ -450,7 +450,7 @@
 <div class="section">
 <h3><a name="Dependency_Tree"></a>Dependency Tree</h3>
 <ul>
-<li>org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0 <img id="_img1" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep0', '_img1' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep0" style="display:none">
+<li>org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1 <img id="_img1" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep0', '_img1' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep0" style="display:none">
 <table border="0" class="table table-striped">
 <tr class="a">
 <th>Apache Maven Source Plugin</th></tr>
@@ -839,11 +839,11 @@ Brotli, Zstandard and ar, cpio, jar, tar
 <div class="section">
 <h2><a name="Licenses"></a>Licenses</h2>
 <p><b>Apache Public License 2.0: </b>Plexus Cipher: encryption/decryption Component, Plexus Security Dispatcher Component</p>
-<p><b>Public Domain: </b>XZ for Java</p>
-<p><b>New BSD License: </b>Hamcrest Core</p>
+<p><b>Apache License 2.0: </b>snappy</p>
 <p><b>Eclipse Public License 1.0: </b>JUnit</p>
 <p><b>Apache License, Version 2.0: </b>Apache Commons Compress, Apache Commons IO, Apache Maven Archiver, Apache Maven Shared Utils, Apache Maven Source Plugin, Maven Plugin Tools Java 5 Annotations, Plexus :: Component Annotations, Plexus Archiver Component, Plexus Common Utilities, Plexus IO Components</p>
-<p><b>Apache License 2.0: </b>snappy</p>
+<p><b>Public Domain: </b>XZ for Java</p>
+<p><b>New BSD License: </b>Hamcrest Core</p>
 <p><b>The Apache Software License, Version 2.0: </b>Aether :: API, Aether :: Implementation, Aether :: SPI, Aether :: Utilities, Maven Aether Provider, Maven Artifact, Maven Compat, Maven Core, Maven Model, Maven Model Builder, Maven Plugin API, Maven Plugin Testing Mechanism, Maven Repository Metadata Model, Maven Settings, Maven Settings Builder, Maven Wagon API, Plexus Classworlds, Plexus Interpolation API, Sisu - Guice, Sisu - Inject (JSR330 bean support), Sisu - Inject (Plexus bean support)</p></div><a name="Dependency_File_Details"></a>
 <div class="section">
 <h2><a name="Dependency_File_Details"></a>Dependency File Details</h2>
@@ -1242,7 +1242,7 @@ Brotli, Zstandard and ar, cpio, jar, tar
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-            <p>Copyright &copy;2002&#x2013;2019
+            <p>Copyright &copy;2002&#x2013;2022
 <a href="https://www.apache.org/">The Apache Software Foundation</a>.
 All rights reserved.</p>
         </div>

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-convergence.html
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-convergence.html (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-convergence.html Fri Feb 18 18:31:13 2022
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:dependency-convergence at 2019-10-29
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:dependency-convergence at 2022-02-18
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <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="20191029" />
+    <meta name="Date-Revision-yyyymmdd" content="20220218" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Maven Source Plugin &#x2013; Dependency Convergence</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -41,8 +41,8 @@
       <li class=""><a href="../index.html" title="Plugins">Plugins</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="Apache Maven Source Plugin">Apache Maven Source Plugin</a><span class="divider">/</span></li>
     <li class="active ">Dependency Convergence</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2019-10-29</li>
-          <li id="projectVersion" class="pull-right">Version: 3.2.0</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-02-18</li>
+          <li id="projectVersion" class="pull-right">Version: 3.2.1</li>
         </ul>
       </div>
       <div class="row-fluid">
@@ -161,15 +161,15 @@
 <tr class="a">
 <td width="25%">2.2</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />\-&#160;org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:2.1:test<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-archiver:jar:2.2:test - omitted for conflict with 4.2.1)<br /><br /></ol></td></tr>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />\-&#160;org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:2.1:test<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-archiver:jar:2.2:test - omitted for conflict with 4.2.1)<br /><br /></ol></td></tr>
 <tr class="b">
 <td width="25%">4.2.0</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />\-&#160;org.apache.maven:maven-archiver:jar:3.5.0:compile<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-archiver:jar:4.2.0:compile - omitted for conflict with 4.2.1)<br /><br /></ol></td></tr>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />\-&#160;org.apache.maven:maven-archiver:jar:3.5.0:compile<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-archiver:jar:4.2.0:compile - omitted for conflict with 4.2.1)<br /><br /></ol></td></tr>
 <tr class="a">
 <td width="25%">4.2.1</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />\-&#160;org.codehaus.plexus:plexus-archiver:jar:4.2.1:compile<br /><br /></ol></td></tr></table></td></tr></table></div>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />\-&#160;org.codehaus.plexus:plexus-archiver:jar:4.2.1:compile<br /><br /></ol></td></tr></table></td></tr></table></div>
 <div class="section">
 <h4><a name="org.codehaus.plexus:plexus-interpolation"></a>org.codehaus.plexus:plexus-interpolation</h4>
 <table border="0" class="table table-striped">
@@ -180,11 +180,11 @@
 <tr class="a">
 <td width="25%">1.14</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />+-&#160;org.apache.maven:maven-core:jar:3.0:compile<br />|&#160;&#160;+-&#160;org.apache.maven:maven-settings-builder:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-interpolation:jar:1.14:compile - omitted for duplicate)<br />|&#160;&#160;+-&#160;org.apache.maven:maven-model-builder:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-interpolation:jar:1.14:compile - omitted for duplicate)<br />|&#160;&#160;\-&#160;org.codehaus.plexus:plexus-interpolation:jar:1.14:compile<br />\-&#160;org.apache.maven:maven-compat:jar:3.0:test<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-interpolation:jar:1.14:test - omitted for duplicate)<br /><br /></ol></td></tr>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />+-&#160;org.apache.maven:maven-core:jar:3.0:compile<br />|&#160;&#160;+-&#160;org.apache.maven:maven-settings-builder:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-interpolation:jar:1.14:compile - omitted for duplicate)<br />|&#160;&#160;+-&#160;org.apache.maven:maven-model-builder:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-interpolation:jar:1.14:compile - omitted for duplicate)<br />|&#160;&#160;\-&#160;org.codehaus.plexus:plexus-interpolation:jar:1.14:compile<br />\-&#160;org.apache.maven:maven-compat:jar:3.0:test<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-interpolation:jar:1.14:test - omitted for duplicate)<br /><br /></ol></td></tr>
 <tr class="b">
 <td width="25%">1.25</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />\-&#160;org.apache.maven:maven-archiver:jar:3.5.0:compile<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-interpolation:jar:1.25:compile - omitted for conflict with 1.14)<br /><br /></ol></td></tr></table></td></tr></table></div>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />\-&#160;org.apache.maven:maven-archiver:jar:3.5.0:compile<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-interpolation:jar:1.25:compile - omitted for conflict with 1.14)<br /><br /></ol></td></tr></table></td></tr></table></div>
 <div class="section">
 <h4><a name="org.codehaus.plexus:plexus-utils"></a>org.codehaus.plexus:plexus-utils</h4>
 <table border="0" class="table table-striped">
@@ -195,23 +195,23 @@
 <tr class="b">
 <td width="25%">1.4.2</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />\-&#160;org.apache.maven:maven-compat:jar:3.0:test<br />&#160;&#160;&#160;\-&#160;org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6:test<br />&#160;&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:1.4.2:test - omitted for conflict with 3.3.0)<br /><br /></ol></td></tr>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />\-&#160;org.apache.maven:maven-compat:jar:3.0:test<br />&#160;&#160;&#160;\-&#160;org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6:test<br />&#160;&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:1.4.2:test - omitted for conflict with 3.3.0)<br /><br /></ol></td></tr>
 <tr class="a">
 <td width="25%">1.5.5</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />\-&#160;org.apache.maven:maven-core:jar:3.0:compile<br />&#160;&#160;&#160;\-&#160;org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile<br />&#160;&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:1.5.5:compile - omitted for conflict with 2.0.4)<br /><br /></ol></td></tr>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />\-&#160;org.apache.maven:maven-core:jar:3.0:compile<br />&#160;&#160;&#160;\-&#160;org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile<br />&#160;&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:1.5.5:compile - omitted for conflict with 2.0.4)<br /><br /></ol></td></tr>
 <tr class="b">
 <td width="25%">2.0.4</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />+-&#160;org.apache.maven:maven-model:jar:3.0:compile<br />|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for conflict with 3.3.0)<br />+-&#160;org.apache.maven:maven-plugin-api:jar:3.0:compile<br />|&#160;&#160;\-&#160;org.apache.maven:maven-artifact:jar:3.0:compile<br />|&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />+-&#160;org.apache.maven:maven-core:jar:3.0:compile<br />|&#160;&#160;+-&#160;org.apache.maven:maven-settings:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />|&#160;&#160;+-&#160;org.apache.maven:maven-settings-builder:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />|&#160;&#160;+-&#
 160;org.apache.maven:maven-repository-metadata:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />|&#160;&#160;+-&#160;org.apache.maven:maven-model-builder:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />\-&#160;org.apache.maven:maven-compat:jar:3.0:test<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:test - omitted for conflict with 3.3.0)<br /><br /></ol></td></tr>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />+-&#160;org.apache.maven:maven-model:jar:3.0:compile<br />|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for conflict with 3.3.0)<br />+-&#160;org.apache.maven:maven-plugin-api:jar:3.0:compile<br />|&#160;&#160;\-&#160;org.apache.maven:maven-artifact:jar:3.0:compile<br />|&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />+-&#160;org.apache.maven:maven-core:jar:3.0:compile<br />|&#160;&#160;+-&#160;org.apache.maven:maven-settings:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />|&#160;&#160;+-&#160;org.apache.maven:maven-settings-builder:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />|&#160;&#160;+-&#
 160;org.apache.maven:maven-repository-metadata:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />|&#160;&#160;+-&#160;org.apache.maven:maven-model-builder:jar:3.0:compile<br />|&#160;&#160;|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:compile - omitted for duplicate)<br />\-&#160;org.apache.maven:maven-compat:jar:3.0:test<br />&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.4:test - omitted for conflict with 3.3.0)<br /><br /></ol></td></tr>
 <tr class="a">
 <td width="25%">2.0.5</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />\-&#160;org.apache.maven:maven-plugin-api:jar:3.0:compile<br />&#160;&#160;&#160;\-&#160;org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile<br />&#160;&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.5:compile - omitted for conflict with 2.0.4)<br /><br /></ol></td></tr>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />\-&#160;org.apache.maven:maven-plugin-api:jar:3.0:compile<br />&#160;&#160;&#160;\-&#160;org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile<br />&#160;&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:2.0.5:compile - omitted for conflict with 2.0.4)<br /><br /></ol></td></tr>
 <tr class="b">
 <td width="25%">3.3.0</td>
 <td>
-<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0<br />+-&#160;org.apache.maven:maven-archiver:jar:3.5.0:compile<br />|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:3.3.0:compile - omitted for conflict with 2.0.4)<br />+-&#160;org.codehaus.plexus:plexus-archiver:jar:4.2.1:compile<br />|&#160;&#160;+-&#160;(org.codehaus.plexus:plexus-utils:jar:3.3.0:compile - omitted for conflict with 2.0.4)<br />|&#160;&#160;\-&#160;org.codehaus.plexus:plexus-io:jar:3.2.0:compile<br />|&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:3.3.0:compile - omitted for conflict with 2.0.4)<br />\-&#160;org.codehaus.plexus:plexus-utils:jar:3.3.0:compile<br /><br /></ol></td></tr></table></td></tr></table></div></div>
+<ol style="list-style-type: decimal">org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1<br />+-&#160;org.apache.maven:maven-archiver:jar:3.5.0:compile<br />|&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:3.3.0:compile - omitted for conflict with 2.0.4)<br />+-&#160;org.codehaus.plexus:plexus-archiver:jar:4.2.1:compile<br />|&#160;&#160;+-&#160;(org.codehaus.plexus:plexus-utils:jar:3.3.0:compile - omitted for conflict with 2.0.4)<br />|&#160;&#160;\-&#160;org.codehaus.plexus:plexus-io:jar:3.2.0:compile<br />|&#160;&#160;&#160;&#160;&#160;\-&#160;(org.codehaus.plexus:plexus-utils:jar:3.3.0:compile - omitted for conflict with 2.0.4)<br />\-&#160;org.codehaus.plexus:plexus-utils:jar:3.3.0:compile<br /><br /></ol></td></tr></table></td></tr></table></div></div>
         </div>
       </div>
     </div>
@@ -219,7 +219,7 @@
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-            <p>Copyright &copy;2002&#x2013;2019
+            <p>Copyright &copy;2002&#x2013;2022
 <a href="https://www.apache.org/">The Apache Software Foundation</a>.
 All rights reserved.</p>
         </div>

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-info.html
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-info.html (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-info.html Fri Feb 18 18:31:13 2022
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:dependency-info at 2019-10-29
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:dependency-info at 2022-02-18
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <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="20191029" />
+    <meta name="Date-Revision-yyyymmdd" content="20220218" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Maven Source Plugin &#x2013; Dependency Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -41,8 +41,8 @@
       <li class=""><a href="../index.html" title="Plugins">Plugins</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="Apache Maven Source Plugin">Apache Maven Source Plugin</a><span class="divider">/</span></li>
     <li class="active ">Dependency Information</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2019-10-29</li>
-          <li id="projectVersion" class="pull-right">Version: 3.2.0</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-02-18</li>
+          <li id="projectVersion" class="pull-right">Version: 3.2.1</li>
         </ul>
       </div>
       <div class="row-fluid">
@@ -127,31 +127,31 @@
 <div class="source"><pre class="prettyprint linenums">&lt;dependency&gt;
   &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
   &lt;artifactId&gt;maven-source-plugin&lt;/artifactId&gt;
-  &lt;version&gt;3.2.0&lt;/version&gt;
+  &lt;version&gt;3.2.1&lt;/version&gt;
   &lt;type&gt;maven-plugin&lt;/type&gt;
 &lt;/dependency&gt;</pre></div></div>
 <div class="section">
 <h3><a name="Apache_Buildr"></a>Apache Buildr</h3><a name="Apache_Buildr"></a>
-<div class="source"><pre class="prettyprint linenums">'org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.0'</pre></div></div>
+<div class="source"><pre class="prettyprint linenums">'org.apache.maven.plugins:maven-source-plugin:maven-plugin:3.2.1'</pre></div></div>
 <div class="section">
 <h3><a name="Apache_Ivy"></a>Apache Ivy</h3><a name="Apache_Ivy"></a>
-<div class="source"><pre class="prettyprint linenums">&lt;dependency org=&quot;org.apache.maven.plugins&quot; name=&quot;maven-source-plugin&quot; rev=&quot;3.2.0&quot;&gt;
+<div class="source"><pre class="prettyprint linenums">&lt;dependency org=&quot;org.apache.maven.plugins&quot; name=&quot;maven-source-plugin&quot; rev=&quot;3.2.1&quot;&gt;
   &lt;artifact name=&quot;maven-source-plugin&quot; type=&quot;maven-plugin&quot; /&gt;
 &lt;/dependency&gt;</pre></div></div>
 <div class="section">
 <h3><a name="Groovy_Grape"></a>Groovy Grape</h3><a name="Groovy_Grape"></a>
 <div class="source"><pre class="prettyprint linenums">@Grapes(
-@Grab(group='org.apache.maven.plugins', module='maven-source-plugin', version='3.2.0')
+@Grab(group='org.apache.maven.plugins', module='maven-source-plugin', version='3.2.1')
 )</pre></div></div>
 <div class="section">
 <h3><a name="Gradle.2FGrails"></a>Gradle/Grails</h3><a name="Gradle.2FGrails"></a>
-<div class="source"><pre class="prettyprint linenums">compile 'org.apache.maven.plugins:maven-source-plugin:3.2.0'</pre></div></div>
+<div class="source"><pre class="prettyprint linenums">compile 'org.apache.maven.plugins:maven-source-plugin:3.2.1'</pre></div></div>
 <div class="section">
 <h3><a name="Scala_SBT"></a>Scala SBT</h3><a name="Scala_SBT"></a>
-<div class="source"><pre class="prettyprint linenums">libraryDependencies += &quot;org.apache.maven.plugins&quot; % &quot;maven-source-plugin&quot; % &quot;3.2.0&quot;</pre></div></div>
+<div class="source"><pre class="prettyprint linenums">libraryDependencies += &quot;org.apache.maven.plugins&quot; % &quot;maven-source-plugin&quot; % &quot;3.2.1&quot;</pre></div></div>
 <div class="section">
 <h3><a name="Leiningen"></a>Leiningen</h3><a name="Leiningen"></a>
-<div class="source"><pre class="prettyprint linenums">[org.apache.maven.plugins/maven-source-plugin &quot;3.2.0&quot;]</pre></div></div></div>
+<div class="source"><pre class="prettyprint linenums">[org.apache.maven.plugins/maven-source-plugin &quot;3.2.1&quot;]</pre></div></div></div>
         </div>
       </div>
     </div>
@@ -159,7 +159,7 @@
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-            <p>Copyright &copy;2002&#x2013;2019
+            <p>Copyright &copy;2002&#x2013;2022
 <a href="https://www.apache.org/">The Apache Software Foundation</a>.
 All rights reserved.</p>
         </div>

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-management.html
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-management.html (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/dependency-management.html Fri Feb 18 18:31:13 2022
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:dependency-management at 2019-10-29
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:dependency-management at 2022-02-18
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <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="20191029" />
+    <meta name="Date-Revision-yyyymmdd" content="20220218" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Maven Source Plugin &#x2013; Project Dependency Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -41,8 +41,8 @@
       <li class=""><a href="../index.html" title="Plugins">Plugins</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="Apache Maven Source Plugin">Apache Maven Source Plugin</a><span class="divider">/</span></li>
     <li class="active ">Project Dependency Management</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2019-10-29</li>
-          <li id="projectVersion" class="pull-right">Version: 3.2.0</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-02-18</li>
+          <li id="projectVersion" class="pull-right">Version: 3.2.1</li>
         </ul>
       </div>
       <div class="row-fluid">
@@ -161,7 +161,7 @@
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-            <p>Copyright &copy;2002&#x2013;2019
+            <p>Copyright &copy;2002&#x2013;2022
 <a href="https://www.apache.org/">The Apache Software Foundation</a>.
 All rights reserved.</p>
         </div>

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/distribution-management.html
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/distribution-management.html (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/distribution-management.html Fri Feb 18 18:31:13 2022
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:distribution-management at 2019-10-29
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:distribution-management at 2022-02-18
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <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="20191029" />
+    <meta name="Date-Revision-yyyymmdd" content="20220218" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Maven Source Plugin &#x2013; Project Distribution Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -41,8 +41,8 @@
       <li class=""><a href="../index.html" title="Plugins">Plugins</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="Apache Maven Source Plugin">Apache Maven Source Plugin</a><span class="divider">/</span></li>
     <li class="active ">Project Distribution Management</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2019-10-29</li>
-          <li id="projectVersion" class="pull-right">Version: 3.2.0</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-02-18</li>
+          <li id="projectVersion" class="pull-right">Version: 3.2.1</li>
         </ul>
       </div>
       <div class="row-fluid">
@@ -137,7 +137,7 @@
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-            <p>Copyright &copy;2002&#x2013;2019
+            <p>Copyright &copy;2002&#x2013;2022
 <a href="https://www.apache.org/">The Apache Software Foundation</a>.
 All rights reserved.</p>
         </div>

Modified: maven/website/components/plugins-archives/maven-source-plugin-LATEST/download.html
==============================================================================
--- maven/website/components/plugins-archives/maven-source-plugin-LATEST/download.html (original)
+++ maven/website/components/plugins-archives/maven-source-plugin-LATEST/download.html Fri Feb 18 18:31:13 2022
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from src/site/xdoc/download.xml.vm at 2019-10-29
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from src/site/xdoc/download.xml.vm at 2022-02-18
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <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="20191029" />
+    <meta name="Date-Revision-yyyymmdd" content="20220218" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Maven Source Plugin &#x2013; Download Apache Maven Source Plugin Source</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -40,9 +40,9 @@
       <li class=""><a href="../../index.html" title="Maven">Maven</a><span class="divider">/</span></li>
       <li class=""><a href="../index.html" title="Plugins">Plugins</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="Apache Maven Source Plugin">Apache Maven Source Plugin</a><span class="divider">/</span></li>
-    <li class="active ">Download Apache Maven Source Plugin Source <a href="https://github.com/apache/maven-source-plugin/tree/maven-source-plugin-3.2.0/src/site/xdoc/download.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: 2019-10-29</li>
-          <li id="projectVersion" class="pull-right">Version: 3.2.0</li>
+    <li class="active ">Download Apache Maven Source Plugin Source <a href="https://github.com/apache/maven-source-plugin/tree/maven-source-plugin-3.2.1/src/site/xdoc/download.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: 2022-02-18</li>
+          <li id="projectVersion" class="pull-right">Version: 3.2.1</li>
         </ul>
       </div>
       <div class="row-fluid">
@@ -106,10 +106,10 @@
 
   
     <div class="section">
-<h2><a name="Download_Apache_Maven_Source_Plugin_3.2.0_Source"></a>Download Apache Maven Source Plugin 3.2.0 Source</h2>
+<h2><a name="Download_Apache_Maven_Source_Plugin_3.2.1_Source"></a>Download Apache Maven Source Plugin 3.2.1 Source</h2>
 
       
-<p>Apache Maven Source Plugin 3.2.0 is distributed in source format. Use a source archive if you intend to build
+<p>Apache Maven Source Plugin 3.2.1 is distributed in source format. Use a source archive if you intend to build
       Apache Maven Source Plugin yourself. Otherwise, simply use the ready-made binary artifacts from central repository.</p>
 
       
@@ -184,7 +184,7 @@
       
       
 <div class="section">
-<h3><a name="Apache_Maven_Source_Plugin_3.2.0"></a>Apache Maven Source Plugin 3.2.0</h3>
+<h3><a name="Apache_Maven_Source_Plugin_3.2.1"></a>Apache Maven Source Plugin 3.2.1</h3>
         
       
 <p>This is the current stable version of Apache Maven Source Plugin.</p>
@@ -208,13 +208,13 @@
           
 <tr class="b">
             
-<td>Apache Maven Source Plugin 3.2.0 (Source zip)</td>
+<td>Apache Maven Source Plugin 3.2.1 (Source zip)</td>
             
-<td><a href="[preferred]maven/plugins/maven-source-plugin-3.2.0-source-release.zip">maven/plugins/maven-source-plugin-3.2.0-source-release.zip</a></td>
+<td><a href="[preferred]maven/plugins/maven-source-plugin-3.2.1-source-release.zip">maven/plugins/maven-source-plugin-3.2.1-source-release.zip</a></td>
             
-<td><a class="externalLink" href="https://www.apache.org/dist/maven/plugins/maven-source-plugin-3.2.0-source-release.zip.sha512">maven/plugins/maven-source-plugin-3.2.0-source-release.zip.sha512</a></td>
+<td><a class="externalLink" href="https://www.apache.org/dist/maven/plugins/maven-source-plugin-3.2.1-source-release.zip.sha512">maven/plugins/maven-source-plugin-3.2.1-source-release.zip.sha512</a></td>
             
-<td><a class="externalLink" href="https://www.apache.org/dist/maven/plugins/maven-source-plugin-3.2.0-source-release.zip.asc">maven/plugins/maven-source-plugin-3.2.0-source-release.zip.asc</a></td>
+<td><a class="externalLink" href="https://www.apache.org/dist/maven/plugins/maven-source-plugin-3.2.1-source-release.zip.asc">maven/plugins/maven-source-plugin-3.2.1-source-release.zip.asc</a></td>
           </tr>
         </tbody>
       </table>
@@ -238,7 +238,7 @@
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-            <p>Copyright &copy;2002&#x2013;2019
+            <p>Copyright &copy;2002&#x2013;2022
 <a href="https://www.apache.org/">The Apache Software Foundation</a>.
 All rights reserved.</p>
         </div>