Modified: 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/CommonsDistributionStagingMojo.java.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/CommonsDistributionStagingMojo.java.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/CommonsDistributionStagingMojo.java.html
 Thu Apr  5 16:12:44 2018
@@ -129,8 +129,8 @@ import java.util.List;
     @Override
     public void execute() throws MojoExecutionException, MojoFailureException {
 <span class="fc bfc" id="L131" title="All 2 branches covered.">        if 
(!isDistModule) {</span>
-<span class="fc" id="L132">            getLog().info(&quot;This module is 
marked as a non distribution &quot; +</span>
-                    &quot;or assembly module, and the plugin will not 
run.&quot;);
+<span class="fc" id="L132">            getLog().info(&quot;This module is 
marked as a non distribution &quot;</span>
+                    + &quot;or assembly module, and the plugin will not 
run.&quot;);
 <span class="fc" id="L134">            return;</span>
         }
 <span class="pc bpc" id="L136" title="1 of 2 branches missed.">        if 
(StringUtils.isEmpty(distSvnStagingUrl)) {</span>
@@ -156,8 +156,8 @@ import java.util.List;
 <span class="fc" id="L156">            ScmFileSet scmFileSet = new 
ScmFileSet(distCheckoutDirectory);</span>
 <span class="fc" id="L157">            getLog().info(&quot;Checking out dist 
from: &quot; + distSvnStagingUrl);</span>
 <span class="fc" id="L158">            provider.checkOut(repository, 
scmFileSet);</span>
-<span class="fc" id="L159">            
copyReleaseNotesToWorkingDirectory();</span>
-<span class="fc" id="L160">            List&lt;File&gt; filesToCommit = 
copyDistributionsIntoScmDirectoryStructure();</span>
+<span class="fc" id="L159">            File copiedReleaseNotes = 
copyReleaseNotesToWorkingDirectory();</span>
+<span class="fc" id="L160">            List&lt;File&gt; filesToCommit = 
copyDistributionsIntoScmDirectoryStructure(copiedReleaseNotes);</span>
 <span class="pc bpc" id="L161" title="1 of 2 branches missed.">            if 
(!dryRun) {</span>
 <span class="nc" id="L162">                ScmFileSet scmFileSetToCommit = new 
ScmFileSet(distCheckoutDirectory, filesToCommit);</span>
 <span class="nc" id="L163">                AddScmResult addResult = 
provider.add(</span>
@@ -196,18 +196,22 @@ import java.util.List;
      * A utility method that takes the 
&lt;code&gt;RELEASE-NOTES.txt&lt;/code&gt; file from the base directory of the
      * project and copies it into {@link 
CommonsDistributionStagingMojo#workingDirectory}.
      *
+     * @return the RELEASE-NOTES.txt file that exists in the 
&lt;code&gt;target/commons-release-notes/scm&lt;/code&gt;
+     *         directory for the purpose of adding it to the scm change set in 
the method
+     *         {@link 
CommonsDistributionStagingMojo#copyDistributionsIntoScmDirectoryStructure(File)}.
      * @throws MojoExecutionException if an {@link IOException} occurrs as a 
wrapper so that maven
      *                                can properly handle the exception.
      */
-    private void copyReleaseNotesToWorkingDirectory() throws 
MojoExecutionException {
+    private File copyReleaseNotesToWorkingDirectory() throws 
MojoExecutionException {
         StringBuffer copiedReleaseNotesAbsolutePath;
-<span class="fc" id="L204">        getLog().info(&quot;Copying 
RELEASE-NOTES.txt to working directory.&quot;);</span>
-<span class="fc" id="L205">        copiedReleaseNotesAbsolutePath = new 
StringBuffer(workingDirectory.getAbsolutePath());</span>
-<span class="fc" id="L206">        
copiedReleaseNotesAbsolutePath.append(&quot;/scm/&quot;);</span>
-<span class="fc" id="L207">        
copiedReleaseNotesAbsolutePath.append(releaseNotesFile.getName());</span>
-<span class="fc" id="L208">        File copiedReleaseNotes = new 
File(copiedReleaseNotesAbsolutePath.toString());</span>
-<span class="fc" id="L209">        SharedFunctions.copyFile(getLog(), 
releaseNotesFile, copiedReleaseNotes);</span>
-<span class="fc" id="L210">    }</span>
+<span class="fc" id="L207">        getLog().info(&quot;Copying 
RELEASE-NOTES.txt to working directory.&quot;);</span>
+<span class="fc" id="L208">        copiedReleaseNotesAbsolutePath = new 
StringBuffer(workingDirectory.getAbsolutePath());</span>
+<span class="fc" id="L209">        
copiedReleaseNotesAbsolutePath.append(&quot;/scm/&quot;);</span>
+<span class="fc" id="L210">        
copiedReleaseNotesAbsolutePath.append(releaseNotesFile.getName());</span>
+<span class="fc" id="L211">        File copiedReleaseNotes = new 
File(copiedReleaseNotesAbsolutePath.toString());</span>
+<span class="fc" id="L212">        SharedFunctions.copyFile(getLog(), 
releaseNotesFile, copiedReleaseNotes);</span>
+<span class="fc" id="L213">        return copiedReleaseNotes;</span>
+    }
 
     /**
      * Copies the list of files at the root of the {@link 
CommonsDistributionStagingMojo#workingDirectory} into
@@ -228,38 +232,41 @@ import java.util.List;
      *     &lt;/ul&gt;&lt;/li&gt;
      * &lt;/ul&gt;
      *
+     * @param copiedReleaseNotes is the RELEASE-NOTES.txt file that exists in 
the
+     *                           
&lt;code&gt;target/commons-release-plugin/scm&lt;/code&gt; directory.
      * @return a {@link List} of {@link File}'s in the directory for the 
purpose of adding them to the maven
      *         {@link ScmFileSet}.
      * @throws MojoExecutionException if an {@link IOException} occurrs so 
that Maven can handle it properly.
      */
-    private List&lt;File&gt; copyDistributionsIntoScmDirectoryStructure() 
throws MojoExecutionException {
-<span class="fc" id="L236">        List&lt;File&gt; workingDirectoryFiles = 
Arrays.asList(workingDirectory.listFiles());</span>
-<span class="fc" id="L237">        String scmBinariesRoot = 
buildDistBinariesRoot();</span>
-<span class="fc" id="L238">        String scmSourceRoot = 
buildDistSourceRoot();</span>
-<span class="fc" id="L239">        SharedFunctions.initDirectory(getLog(), new 
File(scmBinariesRoot));</span>
-<span class="fc" id="L240">        SharedFunctions.initDirectory(getLog(), new 
File(scmSourceRoot));</span>
-<span class="fc" id="L241">        List&lt;File&gt; filesForMavenScmFileSet = 
new ArrayList&lt;&gt;();</span>
+    private List&lt;File&gt; copyDistributionsIntoScmDirectoryStructure(File 
copiedReleaseNotes)
+            throws MojoExecutionException {
+<span class="fc" id="L243">        List&lt;File&gt; workingDirectoryFiles = 
Arrays.asList(workingDirectory.listFiles());</span>
+<span class="fc" id="L244">        String scmBinariesRoot = 
buildDistBinariesRoot();</span>
+<span class="fc" id="L245">        String scmSourceRoot = 
buildDistSourceRoot();</span>
+<span class="fc" id="L246">        SharedFunctions.initDirectory(getLog(), new 
File(scmBinariesRoot));</span>
+<span class="fc" id="L247">        SharedFunctions.initDirectory(getLog(), new 
File(scmSourceRoot));</span>
+<span class="fc" id="L248">        List&lt;File&gt; filesForMavenScmFileSet = 
new ArrayList&lt;&gt;();</span>
         File copy;
-<span class="fc bfc" id="L243" title="All 2 branches covered.">        for 
(File file : workingDirectoryFiles) {</span>
-<span class="pc bpc" id="L244" title="1 of 2 branches missed.">            if 
(file.getName().contains(&quot;src&quot;)) {</span>
-<span class="nc" id="L245">                copy = new File(scmSourceRoot + 
&quot;/&quot; + file.getName());</span>
-<span class="nc" id="L246">                SharedFunctions.copyFile(getLog(), 
file, copy);</span>
-<span class="nc" id="L247">                
filesForMavenScmFileSet.add(copy);</span>
-<span class="pc bpc" id="L248" title="1 of 2 branches missed.">            } 
else if (file.getName().contains(&quot;bin&quot;)) {</span>
-<span class="nc" id="L249">                copy = new File(scmBinariesRoot + 
&quot;/&quot; + file.getName());</span>
-<span class="nc" id="L250">                SharedFunctions.copyFile(getLog(), 
file, copy);</span>
-<span class="nc" id="L251">                
filesForMavenScmFileSet.add(copy);</span>
-<span class="fc bfc" id="L252" title="All 2 branches covered.">            } 
else if (file.getName().contains(&quot;scm&quot;)) {</span>
-<span class="fc" id="L253">                getLog().debug(&quot;Not copying 
scm directory over to the scm directory because it is the scm 
directory.&quot;);</span>
+<span class="fc bfc" id="L250" title="All 2 branches covered.">        for 
(File file : workingDirectoryFiles) {</span>
+<span class="pc bpc" id="L251" title="1 of 2 branches missed.">            if 
(file.getName().contains(&quot;src&quot;)) {</span>
+<span class="nc" id="L252">                copy = new File(scmSourceRoot + 
&quot;/&quot; + file.getName());</span>
+<span class="nc" id="L253">                SharedFunctions.copyFile(getLog(), 
file, copy);</span>
+<span class="nc" id="L254">                
filesForMavenScmFileSet.add(copy);</span>
+<span class="pc bpc" id="L255" title="1 of 2 branches missed.">            } 
else if (file.getName().contains(&quot;bin&quot;)) {</span>
+<span class="nc" id="L256">                copy = new File(scmBinariesRoot + 
&quot;/&quot; + file.getName());</span>
+<span class="nc" id="L257">                SharedFunctions.copyFile(getLog(), 
file, copy);</span>
+<span class="nc" id="L258">                
filesForMavenScmFileSet.add(copy);</span>
+<span class="fc bfc" id="L259" title="All 2 branches covered.">            } 
else if (file.getName().contains(&quot;scm&quot;)) {</span>
+<span class="fc" id="L260">                getLog().debug(&quot;Not copying 
scm directory over to the scm directory because it is the scm 
directory.&quot;);</span>
                 //do nothing because we are copying into scm
             } else {
-<span class="fc" id="L256">                copy = new 
File(distCheckoutDirectory.getAbsolutePath() + &quot;/&quot; + 
file.getName());</span>
-<span class="fc" id="L257">                SharedFunctions.copyFile(getLog(), 
file, copy);</span>
-<span class="fc" id="L258">                
filesForMavenScmFileSet.add(copy);</span>
+<span class="fc" id="L263">                copy = new 
File(distCheckoutDirectory.getAbsolutePath() + &quot;/&quot; + 
file.getName());</span>
+<span class="fc" id="L264">                SharedFunctions.copyFile(getLog(), 
file, copy);</span>
+<span class="fc" id="L265">                
filesForMavenScmFileSet.add(copy);</span>
             }
-<span class="fc" id="L260">        }</span>
-<span class="fc" id="L261">        
filesForMavenScmFileSet.add(releaseNotesFile);</span>
-<span class="fc" id="L262">        return filesForMavenScmFileSet;</span>
+<span class="fc" id="L267">        }</span>
+<span class="fc" id="L268">        
filesForMavenScmFileSet.add(copiedReleaseNotes);</span>
+<span class="fc" id="L269">        return filesForMavenScmFileSet;</span>
     }
 
     /**
@@ -269,9 +276,9 @@ import java.util.List;
      *         the binaries distributions are to be copied.
      */
     private String buildDistBinariesRoot() {
-<span class="fc" id="L272">        StringBuffer buffer = new 
StringBuffer(distCheckoutDirectory.getAbsolutePath());</span>
-<span class="fc" id="L273">        buffer.append(&quot;/binaries&quot;);</span>
-<span class="fc" id="L274">        return buffer.toString();</span>
+<span class="fc" id="L279">        StringBuffer buffer = new 
StringBuffer(distCheckoutDirectory.getAbsolutePath());</span>
+<span class="fc" id="L280">        buffer.append(&quot;/binaries&quot;);</span>
+<span class="fc" id="L281">        return buffer.toString();</span>
     }
 
     /**
@@ -281,9 +288,9 @@ import java.util.List;
      *         the source distributions are to be copied.
      */
     private String buildDistSourceRoot() {
-<span class="fc" id="L284">        StringBuffer buffer = new 
StringBuffer(distCheckoutDirectory.getAbsolutePath());</span>
-<span class="fc" id="L285">        buffer.append(&quot;/source&quot;);</span>
-<span class="fc" id="L286">        return buffer.toString();</span>
+<span class="fc" id="L291">        StringBuffer buffer = new 
StringBuffer(distCheckoutDirectory.getAbsolutePath());</span>
+<span class="fc" id="L292">        buffer.append(&quot;/source&quot;);</span>
+<span class="fc" id="L293">        return buffer.toString();</span>
     }
 
     /**
@@ -294,7 +301,7 @@ import java.util.List;
      *                is invoked.
      */
     protected void setBasedir(File basedir) {
-<span class="fc" id="L297">        this.basedir = basedir;</span>
-<span class="fc" id="L298">    }</span>
+<span class="fc" id="L304">        this.basedir = basedir;</span>
+<span class="fc" id="L305">    }</span>
 }
 </pre><div class="footer"><span class="right">Created with <a 
href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.0.201801022044</span></div></body></html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.java.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.java.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.java.html
 Thu Apr  5 16:12:44 2018
@@ -95,8 +95,8 @@ import java.util.zip.ZipOutputStream;
     @Override
     public void execute() throws MojoExecutionException, MojoFailureException {
 <span class="pc bpc" id="L97" title="1 of 2 branches missed.">        if 
(!isDistModule) {</span>
-<span class="nc" id="L98">            getLog().info(&quot;This module is 
marked as a non distribution &quot; +</span>
-                    &quot;or assembly module, and the plugin will not 
run.&quot;);
+<span class="nc" id="L98">            getLog().info(&quot;This module is 
marked as a non distribution &quot;</span>
+                    + &quot;or assembly module, and the plugin will not 
run.&quot;);
 <span class="nc" id="L100">            return;</span>
         }
 <span class="pc bpc" id="L102" title="1 of 2 branches missed.">        if 
(StringUtils.isEmpty(distSvnStagingUrl)) {</span>

Modified: 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/index.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/index.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/index.html
 Thu Apr  5 16:12:44 2018
@@ -1 +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.mojos</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.mojos</span></div><h1>org.apach
 e.commons.release.plugin.mojos</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">282 of 1,046</td><td class="ctr2">73%</td><td class="bar">17 of 
60</td><td class="ctr2">71%</td><td class="ctr1">15</td><td 
class="ctr2">49</td><td class="ctr1">43</td><td class="ctr2">204</td><td 
class="ctr1">0</td><td class="ctr2">19</td><td class="ctr1">0</td><td 
class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a1"><a 
href="CommonsDistributionStagingMojo.html" 
class="el_class">CommonsDistributionStagingMojo</a></td><td class="bar" 
id="b0"><img src="../jacoco-resources/redbar.gif" width="51" height="10" 
title="214" alt="214"/><img src="../jacoco-resources/greenbar.gif" width="68" 
height="10" title="288" alt="288"/></td><td class="ctr2" id="c2">57%</td><td 
class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="54" 
height="10" title="10" alt="10"/><img src="../jacoco-resources/greenbar.gif" 
width="65" height="10" title="12" alt="12"/></td><td class="ctr2" id="e2">54%<
 /td><td class="ctr1" id="f0">8</td><td class="ctr2" id="g0">18</td><td 
class="ctr1" id="h0">28</td><td class="ctr2" id="i0">86</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">1</td></tr><tr><td id="a2"><a 
href="CommonsSiteCompressionMojo.html" 
class="el_class">CommonsSiteCompressionMojo</a></td><td class="bar" 
id="b1"><img src="../jacoco-resources/redbar.gif" width="10" height="10" 
title="42" alt="42"/><img src="../jacoco-resources/greenbar.gif" width="40" 
height="10" title="168" alt="168"/></td><td class="ctr2" id="c1">80%</td><td 
class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="21" 
height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" 
width="76" height="10" title="14" alt="14"/></td><td class="ctr2" 
id="e1">77%</td><td class="ctr1" id="f1">4</td><td class="ctr2" 
id="g2">14</td><td class="ctr1" id="h1">9</td><td class="ctr2" 
id="i2">48</td><td class="ctr1" id="j1">0</t
 d><td class="ctr2" id="k2">5</td><td class="ctr1" id="l1">0</td><td 
class="ctr2" id="m1">1</td></tr><tr><td id="a0"><a 
href="CommonsDistributionDetachmentMojo.html" 
class="el_class">CommonsDistributionDetachmentMojo</a></td><td class="bar" 
id="b2"><img src="../jacoco-resources/redbar.gif" width="6" height="10" 
title="26" alt="26"/><img src="../jacoco-resources/greenbar.gif" width="73" 
height="10" title="308" alt="308"/></td><td class="ctr2" id="c0">92%</td><td 
class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="16" 
height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" 
width="92" height="10" title="17" alt="17"/></td><td class="ctr2" 
id="e0">85%</td><td class="ctr1" id="f2">3</td><td class="ctr2" 
id="g1">17</td><td class="ctr1" id="h2">6</td><td class="ctr2" 
id="i1">70</td><td class="ctr1" id="j2">0</td><td class="ctr2" 
id="k1">7</td><td class="ctr1" id="l2">0</td><td class="ctr2" 
id="m2">1</td></tr></tbody></table><div class="footer"><span class
 ="right">Created with <a href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.0.201801022044</span></div></body></html>
\ No newline at end of file
+<?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.mojos</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.mojos</span></div><h1>org.apach
 e.commons.release.plugin.mojos</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">282 of 1,048</td><td class="ctr2">73%</td><td class="bar">17 of 
60</td><td class="ctr2">71%</td><td class="ctr1">15</td><td 
class="ctr2">49</td><td class="ctr1">43</td><td class="ctr2">204</td><td 
class="ctr1">0</td><td class="ctr2">19</td><td class="ctr1">0</td><td 
class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a1"><a 
href="CommonsDistributionStagingMojo.html" 
class="el_class">CommonsDistributionStagingMojo</a></td><td class="bar" 
id="b0"><img src="../jacoco-resources/redbar.gif" width="50" height="10" 
title="214" alt="214"/><img src="../jacoco-resources/greenbar.gif" width="69" 
height="10" title="290" alt="290"/></td><td class="ctr2" id="c2">57%</td><td 
class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="54" 
height="10" title="10" alt="10"/><img src="../jacoco-resources/greenbar.gif" 
width="65" height="10" title="12" alt="12"/></td><td class="ctr2" id="e2">54%<
 /td><td class="ctr1" id="f0">8</td><td class="ctr2" id="g0">18</td><td 
class="ctr1" id="h0">28</td><td class="ctr2" id="i0">86</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">1</td></tr><tr><td id="a2"><a 
href="CommonsSiteCompressionMojo.html" 
class="el_class">CommonsSiteCompressionMojo</a></td><td class="bar" 
id="b1"><img src="../jacoco-resources/redbar.gif" width="10" height="10" 
title="42" alt="42"/><img src="../jacoco-resources/greenbar.gif" width="40" 
height="10" title="168" alt="168"/></td><td class="ctr2" id="c1">80%</td><td 
class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="21" 
height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" 
width="76" height="10" title="14" alt="14"/></td><td class="ctr2" 
id="e1">77%</td><td class="ctr1" id="f1">4</td><td class="ctr2" 
id="g2">14</td><td class="ctr1" id="h1">9</td><td class="ctr2" 
id="i2">48</td><td class="ctr1" id="j1">0</t
 d><td class="ctr2" id="k2">5</td><td class="ctr1" id="l1">0</td><td 
class="ctr2" id="m1">1</td></tr><tr><td id="a0"><a 
href="CommonsDistributionDetachmentMojo.html" 
class="el_class">CommonsDistributionDetachmentMojo</a></td><td class="bar" 
id="b2"><img src="../jacoco-resources/redbar.gif" width="6" height="10" 
title="26" alt="26"/><img src="../jacoco-resources/greenbar.gif" width="73" 
height="10" title="308" alt="308"/></td><td class="ctr2" id="c0">92%</td><td 
class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="16" 
height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" 
width="92" height="10" title="17" alt="17"/></td><td class="ctr2" 
id="e0">85%</td><td class="ctr1" id="f2">3</td><td class="ctr2" 
id="g1">17</td><td class="ctr1" id="h2">6</td><td class="ctr2" 
id="i1">70</td><td class="ctr1" id="j2">0</td><td class="ctr2" 
id="k1">7</td><td class="ctr1" id="l2">0</td><td class="ctr2" 
id="m2">1</td></tr></tbody></table><div class="footer"><span class
 ="right">Created with <a href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.0.201801022044</span></div></body></html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/index.source.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/index.source.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/jacoco/org.apache.commons.release.plugin.mojos/index.source.html
 Thu Apr  5 16:12:44 2018
@@ -1 +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.mojos</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.mojos</span></div><h1>org.apache.commons.rel
 ease.plugin.mojos</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" oncli
 ck="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td 
class="bar">282 of 1,046</td><td class="ctr2">73%</td><td class="bar">17 of 
60</td><td class="ctr2">71%</td><td class="ctr1">15</td><td 
class="ctr2">49</td><td class="ctr1">43</td><td class="ctr2">204</td><td 
class="ctr1">0</td><td class="ctr2">19</td><td class="ctr1">0</td><td 
class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a1"><a 
href="CommonsDistributionStagingMojo.java.html" 
class="el_source">CommonsDistributionStagingMojo.java</a></td><td class="bar" 
id="b0"><img src="../jacoco-resources/redbar.gif" width="51" height="10" 
title="214" alt="214"/><img src="../jacoco-resources/greenbar.gif" width="68" 
height="10" title="288" alt="288"/></td><td class="ctr2" id="c2">57%</td><td 
class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="54" 
height="10" title="10" alt="10"/><img src="../jacoco-resources/greenbar.gif" 
width="65" height="10" title="12" alt="12"/></td><td class="ctr2" id="e2">54%</t
 d><td class="ctr1" id="f0">8</td><td class="ctr2" id="g0">18</td><td 
class="ctr1" id="h0">28</td><td class="ctr2" id="i0">86</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">1</td></tr><tr><td id="a2"><a 
href="CommonsSiteCompressionMojo.java.html" 
class="el_source">CommonsSiteCompressionMojo.java</a></td><td class="bar" 
id="b1"><img src="../jacoco-resources/redbar.gif" width="10" height="10" 
title="42" alt="42"/><img src="../jacoco-resources/greenbar.gif" width="40" 
height="10" title="168" alt="168"/></td><td class="ctr2" id="c1">80%</td><td 
class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="21" 
height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" 
width="76" height="10" title="14" alt="14"/></td><td class="ctr2" 
id="e1">77%</td><td class="ctr1" id="f1">4</td><td class="ctr2" 
id="g2">14</td><td class="ctr1" id="h1">9</td><td class="ctr2" 
id="i2">48</td><td class="ctr1" id=
 "j1">0</td><td class="ctr2" id="k2">5</td><td class="ctr1" id="l1">0</td><td 
class="ctr2" id="m1">1</td></tr><tr><td id="a0"><a 
href="CommonsDistributionDetachmentMojo.java.html" 
class="el_source">CommonsDistributionDetachmentMojo.java</a></td><td 
class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="6" 
height="10" title="26" alt="26"/><img src="../jacoco-resources/greenbar.gif" 
width="73" height="10" title="308" alt="308"/></td><td class="ctr2" 
id="c0">92%</td><td class="bar" id="d2"><img 
src="../jacoco-resources/redbar.gif" width="16" height="10" title="3" 
alt="3"/><img src="../jacoco-resources/greenbar.gif" width="92" height="10" 
title="17" alt="17"/></td><td class="ctr2" id="e0">85%</td><td class="ctr1" 
id="f2">3</td><td class="ctr2" id="g1">17</td><td class="ctr1" 
id="h2">6</td><td class="ctr2" id="i1">70</td><td class="ctr1" 
id="j2">0</td><td class="ctr2" id="k1">7</td><td class="ctr1" id="l2">0</td><td 
class="ctr2" id="m2">1</td></tr></tbody></table><div class=
 "footer"><span class="right">Created with <a 
href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.0.201801022044</span></div></body></html>
\ No newline at end of file
+<?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.mojos</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.mojos</span></div><h1>org.apache.commons.rel
 ease.plugin.mojos</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" oncli
 ck="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td 
class="bar">282 of 1,048</td><td class="ctr2">73%</td><td class="bar">17 of 
60</td><td class="ctr2">71%</td><td class="ctr1">15</td><td 
class="ctr2">49</td><td class="ctr1">43</td><td class="ctr2">204</td><td 
class="ctr1">0</td><td class="ctr2">19</td><td class="ctr1">0</td><td 
class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a1"><a 
href="CommonsDistributionStagingMojo.java.html" 
class="el_source">CommonsDistributionStagingMojo.java</a></td><td class="bar" 
id="b0"><img src="../jacoco-resources/redbar.gif" width="50" height="10" 
title="214" alt="214"/><img src="../jacoco-resources/greenbar.gif" width="69" 
height="10" title="290" alt="290"/></td><td class="ctr2" id="c2">57%</td><td 
class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="54" 
height="10" title="10" alt="10"/><img src="../jacoco-resources/greenbar.gif" 
width="65" height="10" title="12" alt="12"/></td><td class="ctr2" id="e2">54%</t
 d><td class="ctr1" id="f0">8</td><td class="ctr2" id="g0">18</td><td 
class="ctr1" id="h0">28</td><td class="ctr2" id="i0">86</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">1</td></tr><tr><td id="a2"><a 
href="CommonsSiteCompressionMojo.java.html" 
class="el_source">CommonsSiteCompressionMojo.java</a></td><td class="bar" 
id="b1"><img src="../jacoco-resources/redbar.gif" width="10" height="10" 
title="42" alt="42"/><img src="../jacoco-resources/greenbar.gif" width="40" 
height="10" title="168" alt="168"/></td><td class="ctr2" id="c1">80%</td><td 
class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="21" 
height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" 
width="76" height="10" title="14" alt="14"/></td><td class="ctr2" 
id="e1">77%</td><td class="ctr1" id="f1">4</td><td class="ctr2" 
id="g2">14</td><td class="ctr1" id="h1">9</td><td class="ctr2" 
id="i2">48</td><td class="ctr1" id=
 "j1">0</td><td class="ctr2" id="k2">5</td><td class="ctr1" id="l1">0</td><td 
class="ctr2" id="m1">1</td></tr><tr><td id="a0"><a 
href="CommonsDistributionDetachmentMojo.java.html" 
class="el_source">CommonsDistributionDetachmentMojo.java</a></td><td 
class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="6" 
height="10" title="26" alt="26"/><img src="../jacoco-resources/greenbar.gif" 
width="73" height="10" title="308" alt="308"/></td><td class="ctr2" 
id="c0">92%</td><td class="bar" id="d2"><img 
src="../jacoco-resources/redbar.gif" width="16" height="10" title="3" 
alt="3"/><img src="../jacoco-resources/greenbar.gif" width="92" height="10" 
title="17" alt="17"/></td><td class="ctr2" id="e0">85%</td><td class="ctr1" 
id="f2">3</td><td class="ctr2" id="g1">17</td><td class="ctr1" 
id="h2">6</td><td class="ctr2" id="i1">70</td><td class="ctr1" 
id="j2">0</td><td class="ctr2" id="k1">7</td><td class="ctr1" id="l2">0</td><td 
class="ctr2" id="m2">1</td></tr></tbody></table><div class=
 "footer"><span class="right">Created with <a 
href="http://www.jacoco.org/jacoco";>JaCoCo</a> 
0.8.0.201801022044</span></div></body></html>
\ No newline at end of file

Added: 
websites/production/commons/content/proper/commons-release-plugin/japicmp.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/japicmp.html 
(added)
+++ 
websites/production/commons/content/proper/commons-release-plugin/japicmp.html 
Thu Apr  5 16:12:44 2018
@@ -0,0 +1,280 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 05 April 2018
+ | 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="20180405" />
+    <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: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</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="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="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="javancss.html" title="JavaNCSS Report">
+    JavaNCSS Report</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
+                        <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
+            All Rights Reserved.</p>
+                </div>
+  </body>
+
+</html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-release-plugin/javancss.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/javancss.html 
(original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/javancss.html 
Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; JavaNCSS Metric Results</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -101,7 +101,7 @@
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                                
    <li class="expanded">
+                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -130,6 +130,10 @@
     Rat Report</a>
           </li>
                                      <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                                     <li class="none">
                   <a href="checkstyle.html" title="Checkstyle">
     Checkstyle</a>
           </li>
@@ -284,7 +288,7 @@
 <td>15</td>
 <td>290</td>
 <td>15</td>
-<td>142</td>
+<td>147</td>
 <td>4</td>
 <td>149</td></tr>
 <tr class="a">
@@ -310,7 +314,7 @@
 <td>18</td>
 <td>324</td>
 <td>19</td>
-<td>169</td>
+<td>174</td>
 <td>5</td>
 <td>196</td></tr></table></div>
 <div class="section">
@@ -326,7 +330,7 @@
 <th>Javadocs</th></tr>
 <tr class="a">
 <td><a 
href="./xref/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.html">org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo</a></td>
-<td>99</td>
+<td>100</td>
 <td>6</td>
 <td>0</td>
 <td>6</td></tr>
@@ -358,7 +362,7 @@
 <th>Javadocs</th></tr>
 <tr class="b">
 <td><a 
href="./xref/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.html">org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo</a></td>
-<td>99</td>
+<td>100</td>
 <td>6</td>
 <td>0</td>
 <td>6</td></tr>
@@ -389,7 +393,7 @@
 <th>Methods average</th>
 <th>Javadocs average</th></tr>
 <tr class="a">
-<td>62.25</td>
+<td>62.50</td>
 <td>324.00</td>
 <td>0.00</td>
 <td>4.50</td>
@@ -410,7 +414,7 @@
 <td>15</td>
 <td>0</td></tr>
 <tr class="b">
-<td><a 
href="./xref/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.html">org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo.copyDistributionsIntoScmDirectoryStructure()</a></td>
+<td><a 
href="./xref/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.html">org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo.copyDistributionsIntoScmDirectoryStructure(File)</a></td>
 <td>27</td>
 <td>5</td>
 <td>1</td></tr>
@@ -446,7 +450,7 @@
 <td>1</td></tr>
 <tr class="a">
 <td><a 
href="./xref/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.html">org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo.copyReleaseNotesToWorkingDirectory()</a></td>
-<td>8</td>
+<td>9</td>
 <td>1</td>
 <td>1</td></tr>
 <tr class="b">
@@ -503,7 +507,7 @@
 <th>Javadocs average</th></tr>
 <tr class="b">
 <td>324.00</td>
-<td>11.89</td>
+<td>11.94</td>
 <td>4.06</td>
 <td>0.83</td></tr></table></div>
 <div class="section">

Modified: 
websites/production/commons/content/proper/commons-release-plugin/jira-report.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/jira-report.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/jira-report.html
 Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; JIRA Report</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -101,7 +101,7 @@
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                                
    <li class="expanded">
+                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -130,6 +130,10 @@
     Rat Report</a>
           </li>
                                      <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                                     <li class="none">
                   <a href="checkstyle.html" title="Checkstyle">
     Checkstyle</a>
           </li>
@@ -278,7 +282,7 @@
 <td>Make -Dcommons.release.dryRun=true our commit toggle</td>
 <td>Bug</td>
 <td>Fixed</td>
-<td>Resolved</td></tr>
+<td>Closed</td></tr>
 <tr class="a">
 <td></td>
 <td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-88";>COMMONSSITE-88</a></td>
@@ -438,7 +442,7 @@
 <td>Create a mojo for staging commons-rng in some form or fashion</td>
 <td>Improvement</td>
 <td>Fixed</td>
-<td>Resolved</td></tr>
+<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>
@@ -592,13 +596,29 @@
 <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>Resolved</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>Resolved</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>Resolved</td></tr>
+<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>
@@ -606,7 +626,7 @@
 <td>Commons Release Plugin doesn't work with Commons Release Plugin</td>
 <td>Bug</td>
 <td>Fixed</td>
-<td>Resolved</td></tr>
+<td>Closed</td></tr>
 <tr class="b">
 <td>1.8</td>
 <td><a class="externalLink" 
href="https://issues.apache.org/jira/browse/COMMONSSITE-93";>COMMONSSITE-93</a></td>

Modified: 
websites/production/commons/content/proper/commons-release-plugin/mail-lists.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/mail-lists.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/mail-lists.html
 Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; Project Mailing Lists</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -147,7 +147,7 @@
           </li>
                      </ul>
               </li>
-                                                                               
                                                                                
                                                                                
                                                                          <li 
class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                                                
            <li class="collapsed">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     </li>

Modified: 
websites/production/commons/content/proper/commons-release-plugin/pmd.html
==============================================================================
--- websites/production/commons/content/proper/commons-release-plugin/pmd.html 
(original)
+++ websites/production/commons/content/proper/commons-release-plugin/pmd.html 
Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; PMD Results</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -101,7 +101,7 @@
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                                
    <li class="expanded">
+                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -130,6 +130,10 @@
     Rat Report</a>
           </li>
                                      <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                                     <li class="none">
                   <a href="checkstyle.html" title="Checkstyle">
     Checkstyle</a>
           </li>
@@ -266,15 +270,6 @@
 <div class="section">
 <h2><a name="Files"></a>Files</h2>
 <div class="section">
-<h3><a 
name="org.2Fapache.2Fcommons.2Frelease.2Fplugin.2Fmojos.2FCommonsDistributionDetachmentMojo.java"></a>org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java</h3>
-<table border="0" class="bodyTable">
-<tr class="a">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="b">
-<td>Avoid unused imports such as 'java.io.FileInputStream'</td>
-<td><a 
href="./xref/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.html#L32">32</a></td></tr></table></div>
-<div class="section">
 <h3><a 
name="org.2Fapache.2Fcommons.2Frelease.2Fplugin.2Fmojos.2FCommonsDistributionStagingMojo.java"></a>org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java</h3>
 <table border="0" class="bodyTable">
 <tr class="a">

Modified: 
websites/production/commons/content/proper/commons-release-plugin/project-info.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/project-info.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/project-info.html
 Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; Project Information</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -147,7 +147,7 @@
           </li>
                      </ul>
               </li>
-                                                                               
                                                                                
                                                                                
                                                                          <li 
class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                                                
            <li class="collapsed">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     </li>

Modified: 
websites/production/commons/content/proper/commons-release-plugin/project-reports.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/project-reports.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/project-reports.html
 Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; Generated Reports</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -101,7 +101,7 @@
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                                
<li class="expanded active">
+                                                                               
                                                                                
                                                                                
                                                                                
                  <li class="expanded active">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -130,6 +130,10 @@
     Rat Report</a>
           </li>
                                      <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                                     <li class="none">
                   <a href="checkstyle.html" title="Checkstyle">
     Checkstyle</a>
           </li>
@@ -288,27 +292,30 @@
 <td><a href="rat-report.html">Rat Report</a></td>
 <td>Report on compliance to license related source code policies</td></tr>
 <tr class="b">
+<td><a href="japicmp.html">japicmp</a></td>
+<td>Comparing source compatibility of  against 
commons-release-plugin-1.2.jar</td></tr>
+<tr class="a">
 <td><a href="checkstyle.html">Checkstyle</a></td>
 <td>Report on coding style conventions.</td></tr>
-<tr class="a">
+<tr class="b">
 <td><a href="findbugs.html">FindBugs</a></td>
 <td>Generates a source code report with the FindBugs Library.</td></tr>
-<tr class="b">
+<tr class="a">
 <td><a href="clirr-report.html">Clirr</a></td>
 <td>Report on binary and source API differences between releases</td></tr>
-<tr class="a">
+<tr class="b">
 <td><a href="pmd.html">PMD</a></td>
 <td>Verification of coding rules.</td></tr>
-<tr class="b">
+<tr class="a">
 <td><a href="taglist.html">Tag List</a></td>
 <td>Report on various tags found in the code.</td></tr>
-<tr class="a">
+<tr class="b">
 <td><a href="javancss.html">JavaNCSS Report</a></td>
 <td>Code metric analysis.</td></tr>
-<tr class="b">
+<tr class="a">
 <td><a href="jacoco/index.html">JaCoCo</a></td>
 <td>JaCoCo Coverage Report.</td></tr>
-<tr class="a">
+<tr class="b">
 <td><a href="jacoco-aggregate/index.html">JaCoCo Aggregate</a></td>
 <td>JaCoCo Aggregate Coverage Report.</td></tr></table></div></div>
           </td>

Modified: 
websites/production/commons/content/proper/commons-release-plugin/project-summary.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/project-summary.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/project-summary.html
 Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; Project Summary</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -147,7 +147,7 @@
           </li>
                      </ul>
               </li>
-                                                                               
                                                                                
                                                                                
                                                                          <li 
class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                                                
            <li class="collapsed">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     </li>
@@ -291,7 +291,7 @@
 <td>commons-release-plugin</td></tr>
 <tr class="b">
 <td>Version</td>
-<td>1.1</td></tr>
+<td>1.3-SNAPSHOT</td></tr>
 <tr class="a">
 <td>Type</td>
 <td>maven-plugin</td></tr>

Modified: 
websites/production/commons/content/proper/commons-release-plugin/rat-report.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/rat-report.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/rat-report.html
 Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; Rat (Release Audit Tool) 
results</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -101,7 +101,7 @@
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                                
    <li class="expanded">
+                                                                               
                                                                                
                                                                                
                                                                                
                      <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -130,6 +130,10 @@
     Rat Report</a>
           </li>
                                      <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                                     <li class="none">
                   <a href="checkstyle.html" title="Checkstyle">
     Checkstyle</a>
           </li>
@@ -269,7 +273,7 @@
 *****************************************************
 Summary
 -------
-Generated at: 2018-03-05T12:50:07-05:00
+Generated at: 2018-04-05T12:12:20-04:00
 
 Notes: 5
 Binaries: 2

Modified: 
websites/production/commons/content/proper/commons-release-plugin/release-history.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/release-history.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/release-history.html
 Thu Apr  5 16:12:44 2018
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="iso-8859-1" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <meta name="author" content="Commons Documentation Team" />
-    <meta name="Date-Revision-yyyymmdd" content="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; Home</title>
 
@@ -36,8 +36,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -102,7 +102,7 @@
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                               
                                                                                
                                                                                
                                                                          <li 
class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                                                
            <li class="collapsed">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     </li>
@@ -221,19 +221,28 @@
                 
 <tr class="b">
                     
+<td>1.2</td>
+<td>4-2-2018</td>
+<td>7.0</td>
+<td><a href="javadocs/api-1.2/index.html">api-1.2</a></td>
+<td><a href="release-notes/RELEASE-NOTES-1.2.txt">release notes for 
1.2</a></td>
+                </tr>
+                
+<tr class="a">
+                    
 <td>1.1</td>
 <td>2-28-2018</td>
 <td>7.0</td>
-<td><a href="javadocs/api-1.1/">api-1.1</a></td>
+<td><a href="javadocs/api-1.1/index.html">api-1.1</a></td>
 <td><a href="release-notes/RELEASE-NOTES-1.1.txt">release notes for 
1.1</a></td>
                 </tr>
                 
-<tr class="a">
+<tr class="b">
                     
 <td>1.0</td>
 <td>1-10-2018</td>
 <td>7.0</td>
-<td><a href="javadocs/api-1.0/">api-1.0</a></td>
+<td><a href="javadocs/api-1.0/index.html">api-1.0</a></td>
 <td><a href="release-notes/RELEASE-NOTES-1.0.txt">release notes for 
1.0</a></td>
                 </tr>
             </table>

Added: 
websites/production/commons/content/proper/commons-release-plugin/release-notes/RELEASE-NOTES-1.2.txt
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/release-notes/RELEASE-NOTES-1.2.txt
 (added)
+++ 
websites/production/commons/content/proper/commons-release-plugin/release-notes/RELEASE-NOTES-1.2.txt
 Thu Apr  5 16:12:44 2018
@@ -0,0 +1,69 @@
+                         Apache Commons Release Plugin
+                                  Version 1.2
+                                 Release Notes
+
+INTRODUCTION
+============
+This document contains the release notes for the 1.2 version of Apache 
commons-release-plgin.
+The commons-release-plugin is meant to be a mechanism for automating The 
Apache Commons Project's
+release process.
+
+The Apache Commons Release Plugin is a collection of Java based Maven mojos 
for Apache Commons
+Release process. These mojos are intended to be used as a collection of steps 
to be strung
+together for the purpose of removing the manual steps required to produce an 
Apache Commons Release.
+
+
+Changes in this version include:
+
+FIXED BUGS
+==========
+
+o COMMONSSITE-107: Adding ./target/commons-release-plugin/scm/RELEASE-NOTES.txt
+                   to svn as opposed to ./RELEASE-NOTES.txt
+
+
+=============================================================================
+
+                         Apache Commons Release Plugin
+                                  Version 1.0
+                                 Release Notes
+
+NEW FEATURES
+============
+
+o COMMONSSITE-98:  Making the project more multi-module compatible
+
+FIXED BUGS
+==========
+
+o COMMONSSITE-104: Sha1 signature files now reflect actual signatures.
+o COMMONSSITE-102: Commons Release Plugin doesn't work with Commons Release 
Plugin
+o COMMONSSITE-101: Make -Dcommons.release.dryRun=true our commit toggle
+
+
+
+=============================================================================
+
+                         Apache Commons Release Plugin
+                                  Version 1.0
+                                 Release Notes
+
+NEW FEATURES
+============
+
+o COMMONSSITE-96:   Create commons-release-component project skeleton.
+o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, 
checkstyle, etc.
+o COMMONSSITE-97:   Documentation for commons-release-plugin.
+
+
+Historical list of changes: 
http://commons.apache.org/release-plugin/changes-report.html
+
+For complete information on the Apache commons-release-plugin, including 
instructions on how
+to submit bug reports, patches, or suggestions for improvement, see the Apache 
commons-release-plugin's
+website:
+
+http://commons.apache.org/release-plugin/
+
+Have fun!
+-Apache Commons Release Plugin team
+

Modified: 
websites/production/commons/content/proper/commons-release-plugin/source-repository.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-release-plugin/source-repository.html
 (original)
+++ 
websites/production/commons/content/proper/commons-release-plugin/source-repository.html
 Thu Apr  5 16:12:44 2018
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 05 March 2018
+ | Generated by Apache Maven Doxia at 05 April 2018
  | 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="20180305" />
+    <meta name="Date-Revision-yyyymmdd" content="20180405" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Commons Release Plugin &#x2013; Source Code Management</title>
 
@@ -35,8 +35,8 @@
           <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: 05 March 2018</li>
-      <li class="divider">|</li> <li id="projectVersion">Version: 1.1</li>
+            <li id="publishDate">Last Published: 05 April 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 
1.3-SNAPSHOT</li>
   </ul>
                     <div class="pull-right">  <ul class="nav">
             <li>
@@ -147,7 +147,7 @@
           </li>
                      </ul>
               </li>
-                                                                               
                                                                                
                                                                                
                                                                          <li 
class="collapsed">
+                                                                               
                                                                                
                                                                                
                                                                                
            <li class="collapsed">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     </li>


Reply via email to