Added: 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate.java.html
==============================================================================
--- 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate.java.html
 (added)
+++ 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate.java.html
 Fri Jan 25 19:35:32 2019
@@ -0,0 +1,160 @@
+<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD 
XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml"; lang="en"><head><meta 
http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link 
rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link 
rel="shortcut icon" href="../jacoco-resources/report.gif" 
type="image/gif"/><title>ReadmeHtmlVelocityDelegate.java</title><link 
rel="stylesheet" href="../jacoco-resources/prettify.css" 
type="text/css"/><script type="text/javascript" 
src="../jacoco-resources/prettify.js"></script></head><body 
onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" 
id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" 
class="el_session">Sessions</a></span><a href="../index.html" 
class="el_report">Apache Commons Release Plugin</a> &gt; <a 
href="index.source.html" class="el_package">org.apache.commons.release.plugin.v
 elocity</a> &gt; <span 
class="el_source">ReadmeHtmlVelocityDelegate.java</span></div><h1>ReadmeHtmlVelocityDelegate.java</h1><pre
 class="source lang-java linenums">/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the &quot;License&quot;); you may not use this file except in compliance 
with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.commons.release.plugin.velocity;
+
+import java.io.Writer;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.velocity.Template;
+import org.apache.velocity.VelocityContext;
+import org.apache.velocity.app.VelocityEngine;
+import org.apache.velocity.runtime.RuntimeConstants;
+import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader;
+
+/**
+ * This class' purpose is to generate the &lt;code&gt;README.html&lt;/code&gt; 
that moves along with the
+ * release for the sake of downloading the release from the distribution area.
+ *
+ * @author chtompki
+ * @since 1.3
+ */
+public class ReadmeHtmlVelocityDelegate {
+    /** The location of the velocity template for this class. */
+    private static final String TEMPLATE = 
&quot;resources/org/apache/commons/release/plugin&quot;
+                                         + &quot;/velocity/README.vm&quot;;
+    /** This is supposed to represent the maven artifactId. */
+    private final String artifactId;
+    /** This is supposed to represent the maven version of the release. */
+    private final String version;
+    /** The url of the site that gets set into the 
&lt;code&gt;README.html&lt;/code&gt;. */
+    private final String siteUrl;
+
+    /**
+     * The private constructor to be used by the {@link 
ReadmeHtmlVelocityDelegateBuilder}.
+     *
+     * @param artifactId sets the {@link 
ReadmeHtmlVelocityDelegate#artifactId}.
+     * @param version sets the {@link ReadmeHtmlVelocityDelegate#version}.
+     * @param siteUrl sets the {@link ReadmeHtmlVelocityDelegate#siteUrl}.
+     */
+<span class="fc" id="L52">    private ReadmeHtmlVelocityDelegate(String 
artifactId, String version, String siteUrl) {</span>
+<span class="fc" id="L53">        this.artifactId = artifactId;</span>
+<span class="fc" id="L54">        this.version = version;</span>
+<span class="fc" id="L55">        this.siteUrl = siteUrl;</span>
+<span class="fc" id="L56">    }</span>
+
+    /**
+     * Gets the {@link ReadmeHtmlVelocityDelegateBuilder} for constructing the 
{@link ReadmeHtmlVelocityDelegate}.
+     *
+     * @return the {@link ReadmeHtmlVelocityDelegateBuilder}.
+     */
+    public static ReadmeHtmlVelocityDelegateBuilder builder() {
+<span class="fc" id="L64">        return new 
ReadmeHtmlVelocityDelegateBuilder();</span>
+    }
+
+    /**
+     * Renders the &lt;code&gt;README.vm&lt;/code&gt; velocity template with 
the variables constructed with the
+     * {@link ReadmeHtmlVelocityDelegateBuilder}.
+     *
+     * @param writer is the {@link Writer} to which we wish to render the 
&lt;code&gt;README.vm&lt;/code&gt; template.
+     * @return a reference to the {@link Writer} passed in.
+     */
+    public Writer render(Writer writer) {
+<span class="fc" id="L75">        VelocityEngine ve = new 
VelocityEngine();</span>
+<span class="fc" id="L76">        
ve.setProperty(RuntimeConstants.RESOURCE_LOADER, &quot;classpath&quot;);</span>
+<span class="fc" id="L77">        
ve.setProperty(&quot;classpath.resource.loader.class&quot;, 
ClasspathResourceLoader.class.getName());</span>
+<span class="fc" id="L78">        ve.init();</span>
+<span class="fc" id="L79">        Template template = 
ve.getTemplate(TEMPLATE);</span>
+<span class="fc" id="L80">        String[] splitArtifactId = 
artifactId.split(&quot;-&quot;);</span>
+<span class="fc" id="L81">        String wordCommons = 
&quot;commons&quot;;</span>
+<span class="fc" id="L82">        String artifactShortName = 
&quot;&quot;;</span>
+<span class="pc bpc" id="L83" title="1 of 2 branches missed.">        if 
(splitArtifactId.length &gt; 1) {</span>
+<span class="fc" id="L84">            artifactShortName = 
splitArtifactId[1];</span>
+<span class="nc bnc" id="L85" title="All 2 branches missed.">        } else if 
(splitArtifactId.length == 1) {</span>
+<span class="nc" id="L86">            artifactShortName = 
splitArtifactId[0];</span>
+        }
+<span class="fc" id="L88">        String artifactIdWithFirstLetterscapitalized 
=</span>
+<span class="fc" id="L89">                
StringUtils.capitalize(wordCommons)</span>
+                        + &quot;-&quot;
+<span class="fc" id="L91">                        + 
artifactShortName.toUpperCase();</span>
+<span class="fc" id="L92">        VelocityContext context = new 
VelocityContext();</span>
+<span class="fc" id="L93">        
context.internalPut(&quot;artifactIdWithFirstLetterscapitalized&quot;, 
artifactIdWithFirstLetterscapitalized);</span>
+<span class="fc" id="L94">        
context.internalPut(&quot;artifactShortName&quot;, 
artifactShortName.toUpperCase());</span>
+<span class="fc" id="L95">        context.internalPut(&quot;artifactId&quot;, 
artifactId);</span>
+<span class="fc" id="L96">        context.internalPut(&quot;version&quot;, 
version);</span>
+<span class="fc" id="L97">        context.internalPut(&quot;siteUrl&quot;, 
siteUrl);</span>
+<span class="fc" id="L98">        template.merge(context, writer);</span>
+<span class="fc" id="L99">        return writer;</span>
+    }
+
+    /**
+     * A builder class for instantiation of the {@link 
ReadmeHtmlVelocityDelegate}.
+     */
+    public static class ReadmeHtmlVelocityDelegateBuilder {
+        /** The maven artifactId to use in the 
&lt;code&gt;README.vm&lt;/code&gt; template. */
+        private String artifactId;
+        /** The maven version to use in the &lt;code&gt;README.vm&lt;/code&gt; 
template. */
+        private String version;
+        /** The site url to use in the &lt;code&gt;README.vm&lt;/code&gt; 
template. */
+        private String siteUrl;
+
+        /**
+         * Private constructor for using the builder through the {@link 
ReadmeHtmlVelocityDelegate#builder()}
+         * method.
+         */
+        private ReadmeHtmlVelocityDelegateBuilder() {
+            super();
+        }
+
+        /**
+         * Adds the artifactId to the {@link ReadmeHtmlVelocityDelegate}.
+         * @param artifactId the {@link String} representing the maven 
artifactId.
+         * @return the builder to continue building.
+         */
+        public ReadmeHtmlVelocityDelegateBuilder withArtifactId(String 
artifactId) {
+<span class="fc" id="L127">            this.artifactId = artifactId;</span>
+<span class="fc" id="L128">            return this;</span>
+        }
+
+        /**
+         * Adds the version to the {@link ReadmeHtmlVelocityDelegate}.
+         * @param version the maven version.
+         * @return the builder to continue building.
+         */
+        public ReadmeHtmlVelocityDelegateBuilder withVersion(String version) {
+<span class="fc" id="L137">            this.version = version;</span>
+<span class="fc" id="L138">            return this;</span>
+        }
+
+        /**
+         * Adds the siteUrl to the {@link ReadmeHtmlVelocityDelegate}.
+         * @param siteUrl the site url to be used in the 
&lt;code&gt;README.html&lt;/code&gt;
+         * @return the builder to continue building.
+         */
+        public ReadmeHtmlVelocityDelegateBuilder withSiteUrl(String siteUrl) {
+<span class="fc" id="L147">            this.siteUrl = siteUrl;</span>
+<span class="fc" id="L148">            return this;</span>
+        }
+
+        /**
+         * Builds up the {@link ReadmeHtmlVelocityDelegate} from the 
previously set parameters.
+         * @return a new {@link ReadmeHtmlVelocityDelegate}.
+         */
+        public ReadmeHtmlVelocityDelegate build() {
+<span class="fc" id="L156">            return new 
ReadmeHtmlVelocityDelegate(this.artifactId, this.version, this.siteUrl);</span>
+        }
+    }
+}
+</pre><div class="footer"><span class="right">Created with <a 
href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.2.201808211720</span></div></body></html>
\ No newline at end of file

Added: 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/index.html
==============================================================================
--- 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/index.html
 (added)
+++ 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/index.html
 Fri Jan 25 19:35:32 2019
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD 
XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml"; lang="en"><head><meta 
http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link 
rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link 
rel="shortcut icon" href="../jacoco-resources/report.gif" 
type="image/gif"/><title>org.apache.commons.release.plugin.velocity</title><script
 type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body 
onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" 
id="breadcrumb"><span class="info"><a href="index.source.html" 
class="el_source">Source Files</a><a href="../jacoco-sessions.html" 
class="el_session">Sessions</a></span><a href="../index.html" 
class="el_report">Apache Commons Release Plugin</a> &gt; <span 
class="el_package">org.apache.commons.release.plugin.velocity</span></div><h1>org
 .apache.commons.release.plugin.velocity</h1><table class="coverage" 
cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" 
onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" 
onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" 
id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" 
onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" 
onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" 
onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" 
onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" 
onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" 
onclick="toggleSort(this)">Missed</td><td class="sorta
 ble ctr2" id="m" 
onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td
 class="bar">8 of 179</td><td class="ctr2">95%</td><td class="bar">3 of 
4</td><td class="ctr2">25%</td><td class="ctr1">2</td><td 
class="ctr2">12</td><td class="ctr1">2</td><td class="ctr2">46</td><td 
class="ctr1">0</td><td class="ctr2">10</td><td class="ctr1">0</td><td 
class="ctr2">4</td></tr></tfoot><tbody><tr><td id="a2"><a 
href="ReadmeHtmlVelocityDelegate.html" 
class="el_class">ReadmeHtmlVelocityDelegate</a></td><td class="bar" 
id="b0"><img src="../jacoco-resources/redbar.gif" width="8" height="10" 
title="8" alt="8"/><img src="../jacoco-resources/greenbar.gif" width="111" 
height="10" title="106" alt="106"/></td><td class="ctr2" id="c3">92%</td><td 
class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="90" 
height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" 
width="30" height="10" title="1" alt="1"/></td><td class="ctr2" 
id="e0">25%</td><td class="c
 tr1" id="f0">2</td><td class="ctr2" id="g0">5</td><td class="ctr1" 
id="h0">2</td><td class="ctr2" id="i0">29</td><td class="ctr1" 
id="j0">0</td><td class="ctr2" id="k1">3</td><td class="ctr1" id="l0">0</td><td 
class="ctr2" id="m0">1</td></tr><tr><td id="a0"><a 
href="HeaderHtmlVelocityDelegate.html" 
class="el_class">HeaderHtmlVelocityDelegate</a></td><td class="bar" 
id="b1"><img src="../jacoco-resources/greenbar.gif" width="35" height="10" 
title="34" alt="34"/></td><td class="ctr2" id="c0">100%</td><td class="bar" 
id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td 
class="ctr2" id="g2">2</td><td class="ctr1" id="h1">0</td><td class="ctr2" 
id="i1">9</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k2">2</td><td 
class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td 
id="a3"><a 
href="ReadmeHtmlVelocityDelegate$ReadmeHtmlVelocityDelegateBuilder.html" 
class="el_class">ReadmeHtmlVelocityDelegate.ReadmeHtmlVelocityDelegateBuilder</a></td><td
 c
 lass="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="27" 
height="10" title="26" alt="26"/></td><td class="ctr2" id="c1">100%</td><td 
class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" 
id="f2">0</td><td class="ctr2" id="g1">4</td><td class="ctr1" id="h2">0</td><td 
class="ctr2" id="i2">7</td><td class="ctr1" id="j2">0</td><td class="ctr2" 
id="k0">4</td><td class="ctr1" id="l2">0</td><td class="ctr2" 
id="m2">1</td></tr><tr><td id="a1"><a 
href="HeaderHtmlVelocityDelegate$HeaderHtmlVelocityDelegateBuilder.html" 
class="el_class">HeaderHtmlVelocityDelegate.HeaderHtmlVelocityDelegateBuilder</a></td><td
 class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="5" 
height="10" title="5" alt="5"/></td><td class="ctr2" id="c2">100%</td><td 
class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" 
id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td 
class="ctr2" id="i3">1</td><td class="ctr1" id="j3">0</td><
 td class="ctr2" id="k3">1</td><td class="ctr1" id="l3">0</td><td class="ctr2" 
id="m3">1</td></tr></tbody></table><div class="footer"><span 
class="right">Created with <a href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.2.201808211720</span></div></body></html>
\ No newline at end of file

Added: 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/index.source.html
==============================================================================
--- 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/index.source.html
 (added)
+++ 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/index.source.html
 Fri Jan 25 19:35:32 2019
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD 
XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml"; lang="en"><head><meta 
http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link 
rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link 
rel="shortcut icon" href="../jacoco-resources/report.gif" 
type="image/gif"/><title>org.apache.commons.release.plugin.velocity</title><script
 type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body 
onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" 
id="breadcrumb"><span class="info"><a href="index.html" 
class="el_class">Classes</a><a href="../jacoco-sessions.html" 
class="el_session">Sessions</a></span><a href="../index.html" 
class="el_report">Apache Commons Release Plugin</a> &gt; <span 
class="el_package">org.apache.commons.release.plugin.velocity</span></div><h1>org.apache.commo
 ns.release.plugin.velocity</h1><table class="coverage" cellspacing="0" 
id="coveragetable"><thead><tr><td class="sortable" id="a" 
onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" 
onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" 
id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" 
onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" 
onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" 
onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" 
onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" 
onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id=
 "m" 
onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td
 class="bar">8 of 179</td><td class="ctr2">95%</td><td class="bar">3 of 
4</td><td class="ctr2">25%</td><td class="ctr1">2</td><td 
class="ctr2">12</td><td class="ctr1">2</td><td class="ctr2">46</td><td 
class="ctr1">0</td><td class="ctr2">10</td><td class="ctr1">0</td><td 
class="ctr2">4</td></tr></tfoot><tbody><tr><td id="a1"><a 
href="ReadmeHtmlVelocityDelegate.java.html" 
class="el_source">ReadmeHtmlVelocityDelegate.java</a></td><td class="bar" 
id="b0"><img src="../jacoco-resources/redbar.gif" width="6" height="10" 
title="8" alt="8"/><img src="../jacoco-resources/greenbar.gif" width="113" 
height="10" title="132" alt="132"/></td><td class="ctr2" id="c1">94%</td><td 
class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="90" 
height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" 
width="30" height="10" title="1" alt="1"/></td><td class="ctr2" 
id="e0">25%</td><td class="ctr
 1" id="f0">2</td><td class="ctr2" id="g0">9</td><td class="ctr1" 
id="h0">2</td><td class="ctr2" id="i0">36</td><td class="ctr1" 
id="j0">0</td><td class="ctr2" id="k0">7</td><td class="ctr1" id="l0">0</td><td 
class="ctr2" id="m0">2</td></tr><tr><td id="a0"><a 
href="HeaderHtmlVelocityDelegate.java.html" 
class="el_source">HeaderHtmlVelocityDelegate.java</a></td><td class="bar" 
id="b1"><img src="../jacoco-resources/greenbar.gif" width="33" height="10" 
title="39" alt="39"/></td><td class="ctr2" id="c0">100%</td><td class="bar" 
id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td 
class="ctr2" id="g1">3</td><td class="ctr1" id="h1">0</td><td class="ctr2" 
id="i1">10</td><td class="ctr1" id="j1">0</td><td class="ctr2" 
id="k1">3</td><td class="ctr1" id="l1">0</td><td class="ctr2" 
id="m1">2</td></tr></tbody></table><div class="footer"><span 
class="right">Created with <a href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.2.201808211720</span></div></body></html>
\ No newline at end of file

Added: 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/SharedFunctions.html
==============================================================================
--- 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/SharedFunctions.html
 (added)
+++ 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/SharedFunctions.html
 Fri Jan 25 19:35:32 2019
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD 
XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml"; lang="en"><head><meta 
http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link 
rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link 
rel="shortcut icon" href="../jacoco-resources/report.gif" 
type="image/gif"/><title>SharedFunctions</title><script type="text/javascript" 
src="../jacoco-resources/sort.js"></script></head><body 
onload="initialSort(['breadcrumb'])"><div class="breadcrumb" 
id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" 
class="el_session">Sessions</a></span><a href="../index.html" 
class="el_report">Apache Commons Release Plugin</a> &gt; <a href="index.html" 
class="el_package">org.apache.commons.release.plugin</a> &gt; <span 
class="el_class">SharedFunctions</span></div><h1>SharedFunctions</h1><table 
class="coverage" cellspacing
 ="0" id="coveragetable"><thead><tr><td class="sortable" id="a" 
onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" 
onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" 
id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" 
onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" 
onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" 
onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" 
onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" 
onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td
 class="bar">55 of 70</td><td class="ctr2">21%</td><td class="bar">2 of 
4</td><td class="ctr2">50%</td><td class="ctr1">2</td
 ><td class="ctr2">4</td><td class="ctr1">11</td><td class="ctr2">18</td><td 
 >class="ctr1">0</td><td class="ctr2">2</td></tr></tfoot><tbody><tr><td 
 >id="a0"><a href="SharedFunctions.java.html#L83" 
 >class="el_method">copyFile(Log, File, File)</a></td><td class="bar" 
 >id="b0"><img src="../jacoco-resources/redbar.gif" width="90" height="10" 
 >title="28" alt="28"/><img src="../jacoco-resources/greenbar.gif" width="16" 
 >height="10" title="5" alt="5"/></td><td class="ctr2" id="c1">15%</td><td 
 >class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" 
 >id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" 
 >id="h1">4</td><td class="ctr2" id="i1">7</td><td class="ctr1" 
 >id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a 
 >href="SharedFunctions.java.html#L57" class="el_method">initDirectory(Log, 
 >File)</a></td><td class="bar" id="b1"><img 
 >src="../jacoco-resources/redbar.gif" width="87" height="10" title="27" 
 >alt="27"/><img src="../jacoco-resources/greenbar.gif" width="
 32" height="10" title="10" alt="10"/></td><td class="ctr2" id="c0">27%</td><td 
class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="60" 
height="10" title="2" alt="2"/><img src="../jacoco-resources/greenbar.gif" 
width="60" height="10" title="2" alt="2"/></td><td class="ctr2" 
id="e0">50%</td><td class="ctr1" id="f0">2</td><td class="ctr2" 
id="g0">3</td><td class="ctr1" id="h0">7</td><td class="ctr2" 
id="i0">11</td><td class="ctr1" id="j1">0</td><td class="ctr2" 
id="k1">1</td></tr></tbody></table><div class="footer"><span 
class="right">Created with <a href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.2.201808211720</span></div></body></html>
\ No newline at end of file

Added: 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/SharedFunctions.java.html
==============================================================================
--- 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/SharedFunctions.java.html
 (added)
+++ 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/SharedFunctions.java.html
 Fri Jan 25 19:35:32 2019
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD 
XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml"; lang="en"><head><meta 
http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link 
rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link 
rel="shortcut icon" href="../jacoco-resources/report.gif" 
type="image/gif"/><title>SharedFunctions.java</title><link rel="stylesheet" 
href="../jacoco-resources/prettify.css" type="text/css"/><script 
type="text/javascript" 
src="../jacoco-resources/prettify.js"></script></head><body 
onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" 
id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" 
class="el_session">Sessions</a></span><a href="../index.html" 
class="el_report">Apache Commons Release Plugin</a> &gt; <a 
href="index.source.html" 
class="el_package">org.apache.commons.release.plugin</a> &gt; <sp
 an 
class="el_source">SharedFunctions.java</span></div><h1>SharedFunctions.java</h1><pre
 class="source lang-java linenums">/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the &quot;License&quot;); you may not use this file except in compliance 
with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.commons.release.plugin;
+
+import java.io.File;
+import java.io.IOException;
+
+import org.apache.maven.plugin.MojoExecutionException;
+import org.apache.maven.plugin.logging.Log;
+import org.codehaus.plexus.util.FileUtils;
+
+/**
+ * Shared static functions for all of our Mojos.
+ *
+ * @author chtompki
+ * @since 1.0
+ */
+public final class SharedFunctions {
+
+    /**
+     * I want a buffer that is an array with 1024 elements of bytes. We declare
+     * the constant here for the sake of making the code more readable.
+     */
+    public static final int BUFFER_BYTE_SIZE = 1024;
+
+    /**
+     * Making the constructor private because the class only contains static 
methods.
+     */
+    private SharedFunctions() {
+        // Utility Class
+    }
+
+    /**
+     * Cleans and then initializes an empty directory that is given by the 
&lt;code&gt;workingDirectory&lt;/code&gt;
+     * parameter.
+     *
+     * @param log is the Maven log for output logging, particularly in regards 
to error management.
+     * @param workingDirectory is a {@link File} that represents the directory 
to first attempt to delete then create.
+     * @throws MojoExecutionException when an {@link IOException} or {@link 
NullPointerException} is caught for the
+     *      purpose of bubbling the exception up to Maven properly.
+     */
+    public static void initDirectory(Log log, File workingDirectory) throws 
MojoExecutionException {
+<span class="pc bpc" id="L57" title="1 of 2 branches missed.">        if 
(workingDirectory.exists()) {</span>
+            try {
+<span class="nc" id="L59">                
FileUtils.deleteDirectory(workingDirectory);</span>
+<span class="nc" id="L60">            } catch (IOException | 
NullPointerException e) {</span>
+<span class="nc" id="L61">                final String message = 
String.format(&quot;Unable to remove directory %s: %s&quot;, 
workingDirectory,</span>
+<span class="nc" id="L62">                        e.getMessage());</span>
+<span class="nc" id="L63">                log.error(message);</span>
+<span class="nc" id="L64">                throw new 
MojoExecutionException(message, e);</span>
+<span class="nc" id="L65">            }</span>
+        }
+<span class="pc bpc" id="L67" title="1 of 2 branches missed.">        if 
(!workingDirectory.exists()) {</span>
+<span class="fc" id="L68">            workingDirectory.mkdirs();</span>
+        }
+<span class="fc" id="L70">    }</span>
+
+    /**
+     * Copies a {@link File} from the &lt;code&gt;fromFile&lt;/code&gt; to the 
&lt;code&gt;toFile&lt;/code&gt; and logs the failure
+     * using the Maven {@link Log}.
+     *
+     * @param log the {@link Log}, the maven logger.
+     * @param fromFile the {@link File} from which to copy.
+     * @param toFile the {@link File} to which to copy into.
+     * @throws MojoExecutionException if an {@link IOException} or {@link 
NullPointerException} is caught.
+     */
+    public static void copyFile(Log log, File fromFile, File toFile) throws 
MojoExecutionException {
+        try {
+<span class="fc" id="L83">            FileUtils.copyFile(fromFile, 
toFile);</span>
+<span class="nc" id="L84">        } catch (IOException | NullPointerException 
e) {</span>
+<span class="nc" id="L85">            final String message = 
String.format(&quot;Unable to copy file %s tp %s: %s&quot;, fromFile, toFile, 
e.getMessage());</span>
+<span class="nc" id="L86">            log.error(message);</span>
+<span class="nc" id="L87">            throw new 
MojoExecutionException(message, e);</span>
+<span class="fc" id="L88">        }</span>
+<span class="fc" id="L89">    }</span>
+}
+</pre><div class="footer"><span class="right">Created with <a 
href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.2.201808211720</span></div></body></html>
\ No newline at end of file

Added: 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/index.html
==============================================================================
--- 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/index.html
 (added)
+++ 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/index.html
 Fri Jan 25 19:35:32 2019
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD 
XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml"; lang="en"><head><meta 
http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link 
rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link 
rel="shortcut icon" href="../jacoco-resources/report.gif" 
type="image/gif"/><title>org.apache.commons.release.plugin</title><script 
type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body 
onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" 
id="breadcrumb"><span class="info"><a href="index.source.html" 
class="el_source">Source Files</a><a href="../jacoco-sessions.html" 
class="el_session">Sessions</a></span><a href="../index.html" 
class="el_report">Apache Commons Release Plugin</a> &gt; <span 
class="el_package">org.apache.commons.release.plugin</span></div><h1>org.apache.commons.re
 lease.plugin</h1><table class="coverage" cellspacing="0" 
id="coveragetable"><thead><tr><td class="sortable" id="a" 
onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" 
onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" 
id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" 
onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" 
onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" 
onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" 
onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" 
onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" 
onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" 
onclick="t
 oggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td 
class="bar">55 of 70</td><td class="ctr2">21%</td><td class="bar">2 of 
4</td><td class="ctr2">50%</td><td class="ctr1">2</td><td 
class="ctr2">4</td><td class="ctr1">11</td><td class="ctr2">18</td><td 
class="ctr1">0</td><td class="ctr2">2</td><td class="ctr1">0</td><td 
class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a 
href="SharedFunctions.html" class="el_class">SharedFunctions</a></td><td 
class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="94" 
height="10" title="55" alt="55"/><img src="../jacoco-resources/greenbar.gif" 
width="25" height="10" title="15" alt="15"/></td><td class="ctr2" 
id="c0">21%</td><td class="bar" id="d0"><img 
src="../jacoco-resources/redbar.gif" width="60" height="10" title="2" 
alt="2"/><img src="../jacoco-resources/greenbar.gif" width="60" height="10" 
title="2" alt="2"/></td><td class="ctr2" id="e0">50%</td><td class="ctr1" 
id="f0">2</td><td class="ctr2" id="g0">4</td>
 <td class="ctr1" id="h0">11</td><td class="ctr2" id="i0">18</td><td 
class="ctr1" id="j0">0</td><td class="ctr2" id="k0">2</td><td class="ctr1" 
id="l0">0</td><td class="ctr2" id="m0">1</td></tr></tbody></table><div 
class="footer"><span class="right">Created with <a 
href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.2.201808211720</span></div></body></html>
\ No newline at end of file

Added: 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/index.source.html
==============================================================================
--- 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/index.source.html
 (added)
+++ 
dev/commons/commons-release-plugin/1.5-RC1/site/jacoco/org.apache.commons.release.plugin/index.source.html
 Fri Jan 25 19:35:32 2019
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD 
XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml"; lang="en"><head><meta 
http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link 
rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link 
rel="shortcut icon" href="../jacoco-resources/report.gif" 
type="image/gif"/><title>org.apache.commons.release.plugin</title><script 
type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body 
onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" 
id="breadcrumb"><span class="info"><a href="index.html" 
class="el_class">Classes</a><a href="../jacoco-sessions.html" 
class="el_session">Sessions</a></span><a href="../index.html" 
class="el_report">Apache Commons Release Plugin</a> &gt; <span 
class="el_package">org.apache.commons.release.plugin</span></div><h1>org.apache.commons.release.plugin<
 /h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td 
class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down 
sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td 
class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td 
class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td 
class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td 
class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td 
class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td 
class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td 
class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td 
class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td 
class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td 
class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td 
class="sortable ctr2" id="m" onclick="toggleSort(thi
 s)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">55 of 
70</td><td class="ctr2">21%</td><td class="bar">2 of 4</td><td 
class="ctr2">50%</td><td class="ctr1">2</td><td class="ctr2">4</td><td 
class="ctr1">11</td><td class="ctr2">18</td><td class="ctr1">0</td><td 
class="ctr2">2</td><td class="ctr1">0</td><td 
class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a 
href="SharedFunctions.java.html" 
class="el_source">SharedFunctions.java</a></td><td class="bar" id="b0"><img 
src="../jacoco-resources/redbar.gif" width="94" height="10" title="55" 
alt="55"/><img src="../jacoco-resources/greenbar.gif" width="25" height="10" 
title="15" alt="15"/></td><td class="ctr2" id="c0">21%</td><td class="bar" 
id="d0"><img src="../jacoco-resources/redbar.gif" width="60" height="10" 
title="2" alt="2"/><img src="../jacoco-resources/greenbar.gif" width="60" 
height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">50%</td><td 
class="ctr1" id="f0">2</td><td class="ctr2" id="g0">4</td><t
 d class="ctr1" id="h0">11</td><td class="ctr2" id="i0">18</td><td class="ctr1" 
id="j0">0</td><td class="ctr2" id="k0">2</td><td class="ctr1" id="l0">0</td><td 
class="ctr2" id="m0">1</td></tr></tbody></table><div class="footer"><span 
class="right">Created with <a href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.2.201808211720</span></div></body></html>
\ No newline at end of file

Added: dev/commons/commons-release-plugin/1.5-RC1/site/japicmp.html
==============================================================================
--- dev/commons/commons-release-plugin/1.5-RC1/site/japicmp.html (added)
+++ dev/commons/commons-release-plugin/1.5-RC1/site/japicmp.html Fri Jan 25 
19:35:32 2019
@@ -0,0 +1,284 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 25 January 2019
+ | 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="ISO-8859-1" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20190125" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Commons Release Plugin &#x2013; </title>
+
+  <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
+  <link rel="stylesheet" href="./css/site.css" type="text/css" />
+    <link rel="stylesheet" href="./css/print.css" media="print" />
+
+  <script type="text/javascript" src="./js/jquery.min.js"></script>
+  <script type="text/javascript" src="./js/bootstrap.min.js"></script>
+  <script type="text/javascript" src="./js/prettify.min.js"></script>
+  <script type="text/javascript" src="./js/site.js"></script>
+
+              
+      </head>
+
+  <body class="composite">
+                          <a href="http://commons.apache.org/"; id="bannerLeft" 
title="Apache Commons logo">
+                                                                               
         <img class="logo-left" src="./images/commons-logo.png"  alt="Apache 
Commons logo"/>
+                </a>
+                    <div class="clear"></div>
+
+    <div class="navbar">
+      <div class="navbar-inner">
+        <div class="container-fluid">
+          <a class="brand" 
href="http://commons.apache.org/proper/commons-release-plugin/";>Apache Commons 
Release Plugin &trade;</a>
+          <ul class="nav">      
+                    
+            <li id="publishDate">Last Published: 25 January 2019</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 1.5</li>
+  </ul>
+                    <div class="pull-right">  <ul class="nav">
+            <li>
+                  <a href="http://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
+    ApacheCon</a>
+      </li>
+          <li>
+                  <a href="http://www.apache.org"; class="externalLink" 
title="Apache">
+    Apache</a>
+      </li>
+          <li>
+                  <a href="../../" title="Commons">
+    Commons</a>
+      </li>
+    </ul>
+</div>
+        </div>
+      </div>
+    </div>
+
+    <div class="container-fluid">
+      <table class="layout-table">
+        <tr>
+          <td class="sidebar">
+            <div class="well sidebar-nav">
+                    <ul class="nav nav-list">
+                                  <li class="nav-header">Release Plugin</li>
+                                        <li class="none">
+                  <a href="index.html" title="Overview">
+    Overview</a>
+          </li>
+                             <li class="none">
+                  <a href="download_commons-release-plugin.cgi" 
title="Download">
+    Download</a>
+          </li>
+                             <li class="none">
+                  <a href="release-history.html" title="Release History">
+    Release History</a>
+          </li>
+                             <li class="none">
+                  <a href="plugin-info.html" title="Plugin Documentation">
+    Plugin Documentation</a>
+          </li>
+                             <li class="none">
+                  <a href="javadocs/api-release/index.html" title="Javadoc 
(Latest release)">
+    Javadoc (Latest release)</a>
+          </li>
+                                                                               
            <li class="expanded">
+                  <a href="development.html" title="Help">
+    Help</a>
+                    <ul>
+                                  <li class="none">
+                  <a href="issue-tracking.html" title="Issue Tracking">
+    Issue Tracking</a>
+          </li>
+                                     <li class="none">
+                  <a href="development.html" title="Development">
+    Development</a>
+          </li>
+                     </ul>
+              </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                        <li class="nav-header"><i 
class="icon-info-sign"></i>Project Documentation</li>
+                                                                               
                                                                                
                                                                                
                               <li class="collapsed">
+                  <a href="project-info.html" title="Project Information">
+    Project Information</a>
+                    </li>
+                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
+                  <a href="project-reports.html" title="Project Reports">
+    Project Reports</a>
+                    <ul>
+                                  <li class="none">
+                  <a href="changes-report.html" title="Changes">
+    Changes</a>
+          </li>
+                                     <li class="none">
+                  <a href="jira-report.html" title="JIRA Report">
+    JIRA Report</a>
+          </li>
+                                     <li class="none">
+                  <a href="apidocs/index.html" title="Javadoc">
+    Javadoc</a>
+          </li>
+                                     <li class="none">
+                  <a href="xref/index.html" title="Source Xref">
+    Source Xref</a>
+          </li>
+                                     <li class="none">
+                  <a href="xref-test/index.html" title="Test Source Xref">
+    Test Source Xref</a>
+          </li>
+                                     <li class="none">
+                  <a href="rat-report.html" title="Rat Report">
+    Rat Report</a>
+          </li>
+                                       <li class="none active">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                                     <li class="none">
+                  <a href="plugin-info.html" title="Plugin Documentation">
+    Plugin Documentation</a>
+          </li>
+                                     <li class="none">
+                  <a href="checkstyle.html" title="Checkstyle">
+    Checkstyle</a>
+          </li>
+                                     <li class="none">
+                  <a href="findbugs.html" title="FindBugs">
+    FindBugs</a>
+          </li>
+                                     <li class="none">
+                  <a href="clirr-report.html" title="Clirr">
+    Clirr</a>
+          </li>
+                                     <li class="none">
+                  <a href="pmd.html" title="PMD">
+    PMD</a>
+          </li>
+                                     <li class="none">
+                  <a href="taglist.html" title="Tag List">
+    Tag List</a>
+          </li>
+                                     <li class="none">
+                  <a href="jacoco/index.html" title="JaCoCo">
+    JaCoCo</a>
+          </li>
+                                     <li class="none">
+                  <a href="jacoco-aggregate/index.html" title="JaCoCo 
Aggregate">
+    JaCoCo Aggregate</a>
+          </li>
+                     </ul>
+              </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Commons</li>
+                                        <li class="none">
+                  <a href="../../" title="Home">
+    Home</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/licenses/"; 
class="externalLink" title="License">
+    License</a>
+          </li>
+                                                                               
<li class="collapsed">
+                  <a href="../../components.html" title="Components">
+    Components</a>
+                    </li>
+                                                                               
<li class="collapsed">
+                  <a href="../../sandbox/index.html" title="Sandbox">
+    Sandbox</a>
+                    </li>
+                                                                               
<li class="collapsed">
+                  <a href="../../dormant/index.html" title="Dormant">
+    Dormant</a>
+                    </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">General 
Information</li>
+                                        <li class="none">
+                  <a href="../../security.html" title="Security">
+    Security</a>
+          </li>
+                             <li class="none">
+                  <a href="../../volunteering.html" title="Volunteering">
+    Volunteering</a>
+          </li>
+                             <li class="none">
+                  <a href="../../patches.html" title="Contributing Patches">
+    Contributing Patches</a>
+          </li>
+                             <li class="none">
+                  <a href="../../building.html" title="Building Components">
+    Building Components</a>
+          </li>
+                             <li class="none">
+                  <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="../../releases/index.html" title="Releasing 
Components">
+    Releasing Components</a>
+          </li>
+                             <li class="none">
+                  <a href="http://wiki.apache.org/commons/FrontPage"; 
class="externalLink" title="Wiki">
+    Wiki</a>
+          </li>
+                 </ul>
+      <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">
+    How the ASF works</a>
+          </li>
+                             <li class="none">
+                  <a href="http://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">
+    Developer Resources</a>
+          </li>
+                             <li class="none">
+                  <a 
href="http://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">
+    Sponsorship</a>
+          </li>
+                             <li class="none">
+                  <a href="http://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>
+                                                                               
                     <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>
+                      </div>
+          </td>
+          <td class="content">
+            
+          </td>
+        </tr>
+      </table>
+    </div>
+
+    <div class="footer">
+      <p>Copyright &copy;                    2018-2019
+                        <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
+            All Rights Reserved.</p>
+                </div>
+  </body>
+
+</html>

Added: dev/commons/commons-release-plugin/1.5-RC1/site/jira-report.html
==============================================================================
--- dev/commons/commons-release-plugin/1.5-RC1/site/jira-report.html (added)
+++ dev/commons/commons-release-plugin/1.5-RC1/site/jira-report.html Fri Jan 25 
19:35:32 2019
@@ -0,0 +1,798 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 25 January 2019
+ | 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="ISO-8859-1" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20190125" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Commons Release Plugin &#x2013; JIRA Report</title>
+
+  <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
+  <link rel="stylesheet" href="./css/site.css" type="text/css" />
+    <link rel="stylesheet" href="./css/print.css" media="print" />
+
+  <script type="text/javascript" src="./js/jquery.min.js"></script>
+  <script type="text/javascript" src="./js/bootstrap.min.js"></script>
+  <script type="text/javascript" src="./js/prettify.min.js"></script>
+  <script type="text/javascript" src="./js/site.js"></script>
+
+              
+      </head>
+
+  <body class="composite">
+                          <a href="http://commons.apache.org/"; id="bannerLeft" 
title="Apache Commons logo">
+                                                                               
         <img class="logo-left" src="./images/commons-logo.png"  alt="Apache 
Commons logo"/>
+                </a>
+                    <div class="clear"></div>
+
+    <div class="navbar">
+      <div class="navbar-inner">
+        <div class="container-fluid">
+          <a class="brand" 
href="http://commons.apache.org/proper/commons-release-plugin/";>Apache Commons 
Release Plugin &trade;</a>
+          <ul class="nav">      
+                    
+            <li id="publishDate">Last Published: 25 January 2019</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 1.5</li>
+  </ul>
+                    <div class="pull-right">  <ul class="nav">
+            <li>
+                  <a href="http://www.apachecon.com/"; class="externalLink" 
title="ApacheCon">
+    ApacheCon</a>
+      </li>
+          <li>
+                  <a href="http://www.apache.org"; class="externalLink" 
title="Apache">
+    Apache</a>
+      </li>
+          <li>
+                  <a href="../../" title="Commons">
+    Commons</a>
+      </li>
+    </ul>
+</div>
+        </div>
+      </div>
+    </div>
+
+    <div class="container-fluid">
+      <table class="layout-table">
+        <tr>
+          <td class="sidebar">
+            <div class="well sidebar-nav">
+                    <ul class="nav nav-list">
+                                  <li class="nav-header">Release Plugin</li>
+                                        <li class="none">
+                  <a href="index.html" title="Overview">
+    Overview</a>
+          </li>
+                             <li class="none">
+                  <a href="download_commons-release-plugin.cgi" 
title="Download">
+    Download</a>
+          </li>
+                             <li class="none">
+                  <a href="release-history.html" title="Release History">
+    Release History</a>
+          </li>
+                             <li class="none">
+                  <a href="plugin-info.html" title="Plugin Documentation">
+    Plugin Documentation</a>
+          </li>
+                             <li class="none">
+                  <a href="javadocs/api-release/index.html" title="Javadoc 
(Latest release)">
+    Javadoc (Latest release)</a>
+          </li>
+                                                                               
            <li class="expanded">
+                  <a href="development.html" title="Help">
+    Help</a>
+                    <ul>
+                                  <li class="none">
+                  <a href="issue-tracking.html" title="Issue Tracking">
+    Issue Tracking</a>
+          </li>
+                                     <li class="none">
+                  <a href="development.html" title="Development">
+    Development</a>
+          </li>
+                     </ul>
+              </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                        <li class="nav-header"><i 
class="icon-info-sign"></i>Project Documentation</li>
+                                                                               
                                                                                
                                                                                
                               <li class="collapsed">
+                  <a href="project-info.html" title="Project Information">
+    Project Information</a>
+                    </li>
+                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
+                  <a href="project-reports.html" title="Project Reports">
+    Project Reports</a>
+                    <ul>
+                                  <li class="none">
+                  <a href="changes-report.html" title="Changes">
+    Changes</a>
+          </li>
+                                       <li class="none active">
+                  <a href="jira-report.html" title="JIRA Report">
+    JIRA Report</a>
+          </li>
+                                     <li class="none">
+                  <a href="apidocs/index.html" title="Javadoc">
+    Javadoc</a>
+          </li>
+                                     <li class="none">
+                  <a href="xref/index.html" title="Source Xref">
+    Source Xref</a>
+          </li>
+                                     <li class="none">
+                  <a href="xref-test/index.html" title="Test Source Xref">
+    Test Source Xref</a>
+          </li>
+                                     <li class="none">
+                  <a href="rat-report.html" title="Rat Report">
+    Rat Report</a>
+          </li>
+                                     <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                                     <li class="none">
+                  <a href="plugin-info.html" title="Plugin Documentation">
+    Plugin Documentation</a>
+          </li>
+                                     <li class="none">
+                  <a href="checkstyle.html" title="Checkstyle">
+    Checkstyle</a>
+          </li>
+                                     <li class="none">
+                  <a href="findbugs.html" title="FindBugs">
+    FindBugs</a>
+          </li>
+                                     <li class="none">
+                  <a href="clirr-report.html" title="Clirr">
+    Clirr</a>
+          </li>
+                                     <li class="none">
+                  <a href="pmd.html" title="PMD">
+    PMD</a>
+          </li>
+                                     <li class="none">
+                  <a href="taglist.html" title="Tag List">
+    Tag List</a>
+          </li>
+                                     <li class="none">
+                  <a href="jacoco/index.html" title="JaCoCo">
+    JaCoCo</a>
+          </li>
+                                     <li class="none">
+                  <a href="jacoco-aggregate/index.html" title="JaCoCo 
Aggregate">
+    JaCoCo Aggregate</a>
+          </li>
+                     </ul>
+              </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Commons</li>
+                                        <li class="none">
+                  <a href="../../" title="Home">
+    Home</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/licenses/"; 
class="externalLink" title="License">
+    License</a>
+          </li>
+                                                                               
<li class="collapsed">
+                  <a href="../../components.html" title="Components">
+    Components</a>
+                    </li>
+                                                                               
<li class="collapsed">
+                  <a href="../../sandbox/index.html" title="Sandbox">
+    Sandbox</a>
+                    </li>
+                                                                               
<li class="collapsed">
+                  <a href="../../dormant/index.html" title="Dormant">
+    Dormant</a>
+                    </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">General 
Information</li>
+                                        <li class="none">
+                  <a href="../../security.html" title="Security">
+    Security</a>
+          </li>
+                             <li class="none">
+                  <a href="../../volunteering.html" title="Volunteering">
+    Volunteering</a>
+          </li>
+                             <li class="none">
+                  <a href="../../patches.html" title="Contributing Patches">
+    Contributing Patches</a>
+          </li>
+                             <li class="none">
+                  <a href="../../building.html" title="Building Components">
+    Building Components</a>
+          </li>
+                             <li class="none">
+                  <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="../../releases/index.html" title="Releasing 
Components">
+    Releasing Components</a>
+          </li>
+                             <li class="none">
+                  <a href="http://wiki.apache.org/commons/FrontPage"; 
class="externalLink" title="Wiki">
+    Wiki</a>
+          </li>
+                 </ul>
+      <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">
+    How the ASF works</a>
+          </li>
+                             <li class="none">
+                  <a href="http://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">
+    Developer Resources</a>
+          </li>
+                             <li class="none">
+                  <a 
href="http://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">
+    Sponsorship</a>
+          </li>
+                             <li class="none">
+                  <a href="http://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>
+                                                                               
                     <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>
+                      </div>
+          </td>
+          <td class="content">
+            <div class="section">
+<h2><a name="JIRA_Report"></a>JIRA Report</h2>
+<table border="0" class="bodyTable">
+<tr class="a">
+<th>Fix Version</th>
+<th>Key</th>
+<th>Component</th>
+<th>Summary</th>
+<th>Type</th>
+<th>Resolution</th>
+<th>Status</th></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-115";>COMMONSSITE-115</a></td>
+<td></td>
+<td>&quot;mvn site&quot; fails with commons-parent 46</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-101";>COMMONSSITE-101</a></td>
+<td>Commons Release Plugin</td>
+<td>Make -Dcommons.release.dryRun=true our commit toggle</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-88";>COMMONSSITE-88</a></td>
+<td></td>
+<td>Dowload page fixes for build plugin and site</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-84";>COMMONSSITE-84</a></td>
+<td>Site</td>
+<td>The link to JIRA on the volunteering page shows &quot;Not Found&quot;</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-82";>COMMONSSITE-82</a></td>
+<td>Commons Skin</td>
+<td>Glitch when project base url is not commons.apache.org</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-74";>COMMONSSITE-74</a></td>
+<td>Commons Build</td>
+<td>Unable to View JavaDocs on the Web for Several Projects</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-73";>COMMONSSITE-73</a></td>
+<td>Commons Parent Pom</td>
+<td>[commons-parent] upgrade to latest apache-parent 12 and upgrade 
versions</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-69";>COMMONSSITE-69</a></td>
+<td></td>
+<td>Commons parent uses maven.compile.[source|target] rather than 
maven.compiler.[source|target]</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-57";>COMMONSSITE-57</a></td>
+<td>Site</td>
+<td>Fix broken link on http://commons.apache.org/mail-lists.html</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-52";>COMMONSSITE-52</a></td>
+<td>Site</td>
+<td>Deletion of old releases should be deferred to clean-up stage</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-43";>COMMONSSITE-43</a></td>
+<td>Commons Parent Pom</td>
+<td>Parent POM should define encoding</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-41";>COMMONSSITE-41</a></td>
+<td>Commons Parent Pom</td>
+<td>Parent POM should not define inception year</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-36";>COMMONSSITE-36</a></td>
+<td>Commons Build Plugin</td>
+<td>Cannot build commons build plugin due to missing osgi manifest file</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-35";>COMMONSSITE-35</a></td>
+<td>Commons Build Plugin</td>
+<td>Unable to use commons:jira-page on Windows</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-25";>COMMONSSITE-25</a></td>
+<td>Site</td>
+<td>http://commons.apache.org/license.html problems</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-6";>COMMONSSITE-6</a></td>
+<td></td>
+<td>[site] custom stylesheet errors with Maven 1.0</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-5";>COMMONSSITE-5</a></td>
+<td></td>
+<td>Ant Task page for common-vfs has a typo.</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-4";>COMMONSSITE-4</a></td>
+<td></td>
+<td>[site] Maven-related updates to the commons site</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-3";>COMMONSSITE-3</a></td>
+<td></td>
+<td>[site] Update release documentation (Step 12 - Updating Jakarta site)</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-2";>COMMONSSITE-2</a></td>
+<td></td>
+<td>[all] Maven build fixes</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-1";>COMMONSSITE-1</a></td>
+<td></td>
+<td>[site] Minor typo on versioning doc</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-124";>COMMONSSITE-124</a></td>
+<td>Commons Parent Pom</td>
+<td>Revert change in commons.scmPubUrl in Parent 47</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-98";>COMMONSSITE-98</a></td>
+<td>Commons Release Plugin</td>
+<td>Create a mojo for staging commons-rng in some form or fashion</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-89";>COMMONSSITE-89</a></td>
+<td>Commons Parent Pom</td>
+<td>Support both clirr and japicmp</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-81";>COMMONSSITE-81</a></td>
+<td>Commons Build Plugin</td>
+<td>commons-build-plugin README/CONTRIBUTING.md handle multi-modules</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-71";>COMMONSSITE-71</a></td>
+<td></td>
+<td>Create project for class path scanning</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-58";>COMMONSSITE-58</a></td>
+<td>Site</td>
+<td>Add url link to GSoC sandbox components in Commons Sandbox index 
page:http://commons.apache.org/sandbox/index.html</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-50";>COMMONSSITE-50</a></td>
+<td>Site</td>
+<td>Document KEYS update process for new RMs</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-40";>COMMONSSITE-40</a></td>
+<td>Commons Parent Pom</td>
+<td>Update maven-source-plugin to 2.1 and add default entries to manifest</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-38";>COMMONSSITE-38</a></td>
+<td>Commons Parent Pom</td>
+<td>Upgrade to maven-javadoc-plugin 2.5 / *-javadoc.jar Manifest entries</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-33";>COMMONSSITE-33</a></td>
+<td>Site</td>
+<td>More details for mailing list page</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-32";>COMMONSSITE-32</a></td>
+<td></td>
+<td>Caching QName of Element and Attribute to save memory - was COMMONSSITE-31 
now moved to AXIS2-3845</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-30";>COMMONSSITE-30</a></td>
+<td>Commons Parent Pom</td>
+<td>Add Module profiles to parent poms</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-22";>COMMONSSITE-22</a></td>
+<td>Commons Build</td>
+<td>Maven2 Plugin to generate custom component pages</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-21";>COMMONSSITE-21</a></td>
+<td>Commons Parent Pom</td>
+<td>commons-parent-6 pom changes</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-15";>COMMONSSITE-15</a></td>
+<td>Nightly</td>
+<td>Only show open voted on issues</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-80";>COMMONSSITE-80</a></td>
+<td></td>
+<td>Start RDF Commons</td>
+<td>New Feature</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-66";>COMMONSSITE-66</a></td>
+<td>Commons Build Plugin</td>
+<td>Add support for a &quot;commons.release.3&quot; set of properties to offer 
a 3rd download option</td>
+<td>New Feature</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-64";>COMMONSSITE-64</a></td>
+<td>Commons Skin</td>
+<td>Add code syntax highlight to commons-skin</td>
+<td>New Feature</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-23";>COMMONSSITE-23</a></td>
+<td>Commons Parent Pom</td>
+<td>commons-parent-8 pom changes (OSGi)</td>
+<td>New Feature</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-20";>COMMONSSITE-20</a></td>
+<td>Site</td>
+<td>Remove docs/ from svn</td>
+<td>Task</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td></td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-8";>COMMONSSITE-8</a></td>
+<td>Nightly</td>
+<td>Bring back logging for each day</td>
+<td>Task</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td>1.4</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-120";>COMMONSSITE-120</a></td>
+<td>Commons Release Plugin</td>
+<td>[release-plugin] Use SHA-256 and SHA-512, not MD5, not SHA-1</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td>1.9</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-109";>COMMONSSITE-109</a></td>
+<td></td>
+<td>[build-plugin] Add a goal for creating all items for pre-release</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td>1.9</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-116";>COMMONSSITE-116</a></td>
+<td>Commons Build Plugin</td>
+<td>[build-plugin] Add a goal for creating the NOTICE.txt file</td>
+<td>New Feature</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td>1.8</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-93";>COMMONSSITE-93</a></td>
+<td>Commons Build Plugin</td>
+<td>Typo in CONTRIBUTING.md template</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td>1.8</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-94";>COMMONSSITE-94</a></td>
+<td></td>
+<td>Include JavaDoc badge in READM.md file.</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td>1.3</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-117";>COMMONSSITE-117</a></td>
+<td>Commons Release Plugin</td>
+<td>Do not generate MD5 checksums</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td>1.3</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-108";>COMMONSSITE-108</a></td>
+<td>Commons Release Plugin</td>
+<td>[release-plugin] Have release plugin generate HEADER.html and README.html 
that accompany releases</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td>1.2</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-107";>COMMONSSITE-107</a></td>
+<td>Commons Release Plugin</td>
+<td>[release-plugin] Adding incorrect RELEASE-NOTES.txt file/directory to 
scm.</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td>1.2</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-105";>COMMONSSITE-105</a></td>
+<td>Commons Parent Pom</td>
+<td>[commons-parent] add commons-release-plugin 1.1</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td>44</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-106";>COMMONSSITE-106</a></td>
+<td>Commons Parent Pom</td>
+<td>[commons-parent] add spotbugs-maven-plugin version 3.1.3</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td>1.1</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-104";>COMMONSSITE-104</a></td>
+<td>Commons Release Plugin</td>
+<td>Commons Release Plugin: generated signature files don't reflect actual 
signatures.</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td>1.1</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-102";>COMMONSSITE-102</a></td>
+<td>Commons Release Plugin</td>
+<td>Commons Release Plugin doesn't work with Commons Release Plugin</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="b">
+<td>1.7</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-91";>COMMONSSITE-91</a></td>
+<td>Commons Build Plugin</td>
+<td>Build plugin does not pass the JIRA_ID property when generating 
README.md</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Closed</td></tr>
+<tr class="a">
+<td>40</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-87";>COMMONSSITE-87</a></td>
+<td></td>
+<td>Commons Parent needs to run assembly plugin later</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td>1.5-SNAPSHOT</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-122";>COMMONSSITE-122</a></td>
+<td>Commons Release Plugin</td>
+<td>[release-plugin] stage-distributions mojo assumes site directory has 
basename 'site'</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td>1.5-SNAPSHOT</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-123";>COMMONSSITE-123</a></td>
+<td>Commons Release Plugin</td>
+<td>[release-plugin] introduce configuration parameter to perfom distribution 
checkin using Maven settings server credentials</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td>18</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-29";>COMMONSSITE-29</a></td>
+<td>Commons Parent Pom</td>
+<td>Link Javadocs to official Java API</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td>17</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-60";>COMMONSSITE-60</a></td>
+<td>Commons Parent Pom</td>
+<td>Profile &quot;rc&quot; lost ability to release to 
/www/people.apache.org/builds/commons; &quot;ci&quot; dropped unnecessarily</td>
+<td>Bug</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td>16</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-55";>COMMONSSITE-55</a></td>
+<td>Commons Parent Pom</td>
+<td>Enable deployment to local folder</td>
+<td>New Feature</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="a">
+<td>14</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-48";>COMMONSSITE-48</a></td>
+<td>Commons Build Plugin</td>
+<td>Build Plugin: provide a facility to add a second release to the download 
page</td>
+<td>Improvement</td>
+<td>Fixed</td>
+<td>Resolved</td></tr>
+<tr class="b">
+<td>14</td>
+<td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-49";>COMMONSSITE-49</a></td>
+<td>Commons Parent Pom</td>
+<td>Add Java compile &amp; test profiles</td>
+<td>New Feature</td>
+<td>Fixed</td>
+<td>Resolved</td></tr></table></div>
+          </td>
+        </tr>
+      </table>
+    </div>
+
+    <div class="footer">
+      <p>Copyright &copy;                    2018-2019
+                        <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
+            All Rights Reserved.</p>
+                </div>
+  </body>
+
+</html>


Reply via email to