Added: websites/production/commons/content/proper/commons-release-plugin/apidocs/src-html/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.html ============================================================================== --- websites/production/commons/content/proper/commons-release-plugin/apidocs/src-html/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.html (added) +++ websites/production/commons/content/proper/commons-release-plugin/apidocs/src-html/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.html Tue Jun 19 03:50:24 2018 @@ -0,0 +1,226 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html lang="en"> +<head> +<title>Source code</title> +<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> +</head> +<body> +<div class="sourceContainer"> +<pre><span class="sourceLineNo">001</span>/*<a name="line.1"></a> +<span class="sourceLineNo">002</span> * Licensed to the Apache Software Foundation (ASF) under one or more<a name="line.2"></a> +<span class="sourceLineNo">003</span> * contributor license agreements. See the NOTICE file distributed with<a name="line.3"></a> +<span class="sourceLineNo">004</span> * this work for additional information regarding copyright ownership.<a name="line.4"></a> +<span class="sourceLineNo">005</span> * The ASF licenses this file to You under the Apache License, Version 2.0<a name="line.5"></a> +<span class="sourceLineNo">006</span> * (the "License"); you may not use this file except in compliance with<a name="line.6"></a> +<span class="sourceLineNo">007</span> * the License. You may obtain a copy of the License at<a name="line.7"></a> +<span class="sourceLineNo">008</span> *<a name="line.8"></a> +<span class="sourceLineNo">009</span> * http://www.apache.org/licenses/LICENSE-2.0<a name="line.9"></a> +<span class="sourceLineNo">010</span> *<a name="line.10"></a> +<span class="sourceLineNo">011</span> * Unless required by applicable law or agreed to in writing, software<a name="line.11"></a> +<span class="sourceLineNo">012</span> * distributed under the License is distributed on an "AS IS" BASIS,<a name="line.12"></a> +<span class="sourceLineNo">013</span> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.13"></a> +<span class="sourceLineNo">014</span> * See the License for the specific language governing permissions and<a name="line.14"></a> +<span class="sourceLineNo">015</span> * limitations under the License.<a name="line.15"></a> +<span class="sourceLineNo">016</span> */<a name="line.16"></a> +<span class="sourceLineNo">017</span>package org.apache.commons.release.plugin.velocity;<a name="line.17"></a> +<span class="sourceLineNo">018</span><a name="line.18"></a> +<span class="sourceLineNo">019</span>import java.io.Writer;<a name="line.19"></a> +<span class="sourceLineNo">020</span>import org.apache.commons.lang3.StringUtils;<a name="line.20"></a> +<span class="sourceLineNo">021</span>import org.apache.velocity.Template;<a name="line.21"></a> +<span class="sourceLineNo">022</span>import org.apache.velocity.VelocityContext;<a name="line.22"></a> +<span class="sourceLineNo">023</span>import org.apache.velocity.app.VelocityEngine;<a name="line.23"></a> +<span class="sourceLineNo">024</span>import org.apache.velocity.runtime.RuntimeConstants;<a name="line.24"></a> +<span class="sourceLineNo">025</span>import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader;<a name="line.25"></a> +<span class="sourceLineNo">026</span><a name="line.26"></a> +<span class="sourceLineNo">027</span>/**<a name="line.27"></a> +<span class="sourceLineNo">028</span> * This class' purpose is to generate the <code>README.html</code> that moves along with the<a name="line.28"></a> +<span class="sourceLineNo">029</span> * release for the sake of downloading the release from the distribution area.<a name="line.29"></a> +<span class="sourceLineNo">030</span> *<a name="line.30"></a> +<span class="sourceLineNo">031</span> * @author chtompki<a name="line.31"></a> +<span class="sourceLineNo">032</span> * @since 1.3<a name="line.32"></a> +<span class="sourceLineNo">033</span> */<a name="line.33"></a> +<span class="sourceLineNo">034</span>public class ReadmeHtmlVelocityDelegate {<a name="line.34"></a> +<span class="sourceLineNo">035</span> /** The location of the velocity template for this class. */<a name="line.35"></a> +<span class="sourceLineNo">036</span> private static final String TEMPLATE = "resources/org/apache/commons/release/plugin"<a name="line.36"></a> +<span class="sourceLineNo">037</span> + "/velocity/README.vm";<a name="line.37"></a> +<span class="sourceLineNo">038</span> /** This is supposed to represent the maven artifactId. */<a name="line.38"></a> +<span class="sourceLineNo">039</span> private final String artifactId;<a name="line.39"></a> +<span class="sourceLineNo">040</span> /** This is supposed to represent the maven version of the release. */<a name="line.40"></a> +<span class="sourceLineNo">041</span> private final String version;<a name="line.41"></a> +<span class="sourceLineNo">042</span> /** The url of the site that gets set into the <code>README.html</code>. */<a name="line.42"></a> +<span class="sourceLineNo">043</span> private final String siteUrl;<a name="line.43"></a> +<span class="sourceLineNo">044</span><a name="line.44"></a> +<span class="sourceLineNo">045</span> /**<a name="line.45"></a> +<span class="sourceLineNo">046</span> * The private constructor to be used by the {@link ReadmeHtmlVelocityDelegateBuilder}.<a name="line.46"></a> +<span class="sourceLineNo">047</span> *<a name="line.47"></a> +<span class="sourceLineNo">048</span> * @param artifactId sets the {@link ReadmeHtmlVelocityDelegate#artifactId}.<a name="line.48"></a> +<span class="sourceLineNo">049</span> * @param version sets the {@link ReadmeHtmlVelocityDelegate#version}.<a name="line.49"></a> +<span class="sourceLineNo">050</span> * @param siteUrl sets the {@link ReadmeHtmlVelocityDelegate#siteUrl}.<a name="line.50"></a> +<span class="sourceLineNo">051</span> */<a name="line.51"></a> +<span class="sourceLineNo">052</span> private ReadmeHtmlVelocityDelegate(String artifactId, String version, String siteUrl) {<a name="line.52"></a> +<span class="sourceLineNo">053</span> this.artifactId = artifactId;<a name="line.53"></a> +<span class="sourceLineNo">054</span> this.version = version;<a name="line.54"></a> +<span class="sourceLineNo">055</span> this.siteUrl = siteUrl;<a name="line.55"></a> +<span class="sourceLineNo">056</span> }<a name="line.56"></a> +<span class="sourceLineNo">057</span><a name="line.57"></a> +<span class="sourceLineNo">058</span> /**<a name="line.58"></a> +<span class="sourceLineNo">059</span> * Gets the {@link ReadmeHtmlVelocityDelegateBuilder} for constructing the {@link ReadmeHtmlVelocityDelegate}.<a name="line.59"></a> +<span class="sourceLineNo">060</span> *<a name="line.60"></a> +<span class="sourceLineNo">061</span> * @return the {@link ReadmeHtmlVelocityDelegateBuilder}.<a name="line.61"></a> +<span class="sourceLineNo">062</span> */<a name="line.62"></a> +<span class="sourceLineNo">063</span> public static ReadmeHtmlVelocityDelegateBuilder builder() {<a name="line.63"></a> +<span class="sourceLineNo">064</span> return new ReadmeHtmlVelocityDelegateBuilder();<a name="line.64"></a> +<span class="sourceLineNo">065</span> }<a name="line.65"></a> +<span class="sourceLineNo">066</span><a name="line.66"></a> +<span class="sourceLineNo">067</span> /**<a name="line.67"></a> +<span class="sourceLineNo">068</span> * Renders the <code>README.vm</code> velocity template with the variables constructed with the<a name="line.68"></a> +<span class="sourceLineNo">069</span> * {@link ReadmeHtmlVelocityDelegateBuilder}.<a name="line.69"></a> +<span class="sourceLineNo">070</span> *<a name="line.70"></a> +<span class="sourceLineNo">071</span> * @param writer is the {@link Writer} to which we wish to render the <code>README.vm</code> template.<a name="line.71"></a> +<span class="sourceLineNo">072</span> * @return a reference to the {@link Writer} passed in.<a name="line.72"></a> +<span class="sourceLineNo">073</span> */<a name="line.73"></a> +<span class="sourceLineNo">074</span> public Writer render(Writer writer) {<a name="line.74"></a> +<span class="sourceLineNo">075</span> VelocityEngine ve = new VelocityEngine();<a name="line.75"></a> +<span class="sourceLineNo">076</span> ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath");<a name="line.76"></a> +<span class="sourceLineNo">077</span> ve.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName());<a name="line.77"></a> +<span class="sourceLineNo">078</span> ve.init();<a name="line.78"></a> +<span class="sourceLineNo">079</span> Template template = ve.getTemplate(TEMPLATE);<a name="line.79"></a> +<span class="sourceLineNo">080</span> String[] splitArtifactId = artifactId.split("-");<a name="line.80"></a> +<span class="sourceLineNo">081</span> String wordCommons = splitArtifactId[0];<a name="line.81"></a> +<span class="sourceLineNo">082</span> String artifactShortName = splitArtifactId[1];<a name="line.82"></a> +<span class="sourceLineNo">083</span> String artifactIdWithFirstLetterscapitalized =<a name="line.83"></a> +<span class="sourceLineNo">084</span> StringUtils.capitalize(wordCommons)<a name="line.84"></a> +<span class="sourceLineNo">085</span> + "-"<a name="line.85"></a> +<span class="sourceLineNo">086</span> + artifactShortName.toUpperCase();<a name="line.86"></a> +<span class="sourceLineNo">087</span> VelocityContext context = new VelocityContext();<a name="line.87"></a> +<span class="sourceLineNo">088</span> context.internalPut("artifactIdWithFirstLetterscapitalized", artifactIdWithFirstLetterscapitalized);<a name="line.88"></a> +<span class="sourceLineNo">089</span> context.internalPut("artifactShortName", artifactShortName.toUpperCase());<a name="line.89"></a> +<span class="sourceLineNo">090</span> context.internalPut("artifactId", artifactId);<a name="line.90"></a> +<span class="sourceLineNo">091</span> context.internalPut("version", version);<a name="line.91"></a> +<span class="sourceLineNo">092</span> context.internalPut("siteUrl", siteUrl);<a name="line.92"></a> +<span class="sourceLineNo">093</span> template.merge(context, writer);<a name="line.93"></a> +<span class="sourceLineNo">094</span> return writer;<a name="line.94"></a> +<span class="sourceLineNo">095</span> }<a name="line.95"></a> +<span class="sourceLineNo">096</span><a name="line.96"></a> +<span class="sourceLineNo">097</span> /**<a name="line.97"></a> +<span class="sourceLineNo">098</span> * A builder class for instantiation of the {@link ReadmeHtmlVelocityDelegate}.<a name="line.98"></a> +<span class="sourceLineNo">099</span> */<a name="line.99"></a> +<span class="sourceLineNo">100</span> public static class ReadmeHtmlVelocityDelegateBuilder {<a name="line.100"></a> +<span class="sourceLineNo">101</span> /** The maven artifactId to use in the <code>README.vm</code> template. */<a name="line.101"></a> +<span class="sourceLineNo">102</span> private String artifactId;<a name="line.102"></a> +<span class="sourceLineNo">103</span> /** The maven version to use in the <code>README.vm</code> template. */<a name="line.103"></a> +<span class="sourceLineNo">104</span> private String version;<a name="line.104"></a> +<span class="sourceLineNo">105</span> /** The site url to use in the <code>README.vm</code> template. */<a name="line.105"></a> +<span class="sourceLineNo">106</span> private String siteUrl;<a name="line.106"></a> +<span class="sourceLineNo">107</span><a name="line.107"></a> +<span class="sourceLineNo">108</span> /**<a name="line.108"></a> +<span class="sourceLineNo">109</span> * Private constructor for using the builder through the {@link ReadmeHtmlVelocityDelegate#builder()}<a name="line.109"></a> +<span class="sourceLineNo">110</span> * method.<a name="line.110"></a> +<span class="sourceLineNo">111</span> */<a name="line.111"></a> +<span class="sourceLineNo">112</span> private ReadmeHtmlVelocityDelegateBuilder() {<a name="line.112"></a> +<span class="sourceLineNo">113</span> super();<a name="line.113"></a> +<span class="sourceLineNo">114</span> }<a name="line.114"></a> +<span class="sourceLineNo">115</span><a name="line.115"></a> +<span class="sourceLineNo">116</span> /**<a name="line.116"></a> +<span class="sourceLineNo">117</span> * Adds the artifactId to the {@link ReadmeHtmlVelocityDelegate}.<a name="line.117"></a> +<span class="sourceLineNo">118</span> * @param artifactId the {@link String} representing the maven artifactId.<a name="line.118"></a> +<span class="sourceLineNo">119</span> * @return the builder to continue building.<a name="line.119"></a> +<span class="sourceLineNo">120</span> */<a name="line.120"></a> +<span class="sourceLineNo">121</span> public ReadmeHtmlVelocityDelegateBuilder withArtifactId(String artifactId) {<a name="line.121"></a> +<span class="sourceLineNo">122</span> this.artifactId = artifactId;<a name="line.122"></a> +<span class="sourceLineNo">123</span> return this;<a name="line.123"></a> +<span class="sourceLineNo">124</span> }<a name="line.124"></a> +<span class="sourceLineNo">125</span><a name="line.125"></a> +<span class="sourceLineNo">126</span> /**<a name="line.126"></a> +<span class="sourceLineNo">127</span> * Adds the version to the {@link ReadmeHtmlVelocityDelegate}.<a name="line.127"></a> +<span class="sourceLineNo">128</span> * @param version the maven version.<a name="line.128"></a> +<span class="sourceLineNo">129</span> * @return the builder to continue building.<a name="line.129"></a> +<span class="sourceLineNo">130</span> */<a name="line.130"></a> +<span class="sourceLineNo">131</span> public ReadmeHtmlVelocityDelegateBuilder withVersion(String version) {<a name="line.131"></a> +<span class="sourceLineNo">132</span> this.version = version;<a name="line.132"></a> +<span class="sourceLineNo">133</span> return this;<a name="line.133"></a> +<span class="sourceLineNo">134</span> }<a name="line.134"></a> +<span class="sourceLineNo">135</span><a name="line.135"></a> +<span class="sourceLineNo">136</span> /**<a name="line.136"></a> +<span class="sourceLineNo">137</span> * Adds the siteUrl to the {@link ReadmeHtmlVelocityDelegate}.<a name="line.137"></a> +<span class="sourceLineNo">138</span> * @param siteUrl the site url to be used in the <code>README.html</code><a name="line.138"></a> +<span class="sourceLineNo">139</span> * @return the builder to continue building.<a name="line.139"></a> +<span class="sourceLineNo">140</span> */<a name="line.140"></a> +<span class="sourceLineNo">141</span> public ReadmeHtmlVelocityDelegateBuilder withSiteUrl(String siteUrl) {<a name="line.141"></a> +<span class="sourceLineNo">142</span> this.siteUrl = siteUrl;<a name="line.142"></a> +<span class="sourceLineNo">143</span> return this;<a name="line.143"></a> +<span class="sourceLineNo">144</span> }<a name="line.144"></a> +<span class="sourceLineNo">145</span><a name="line.145"></a> +<span class="sourceLineNo">146</span> /**<a name="line.146"></a> +<span class="sourceLineNo">147</span> * Builds up the {@link ReadmeHtmlVelocityDelegate} from the previously set parameters.<a name="line.147"></a> +<span class="sourceLineNo">148</span> * @return a new {@link ReadmeHtmlVelocityDelegate}.<a name="line.148"></a> +<span class="sourceLineNo">149</span> */<a name="line.149"></a> +<span class="sourceLineNo">150</span> public ReadmeHtmlVelocityDelegate build() {<a name="line.150"></a> +<span class="sourceLineNo">151</span> return new ReadmeHtmlVelocityDelegate(this.artifactId, this.version, this.siteUrl);<a name="line.151"></a> +<span class="sourceLineNo">152</span> }<a name="line.152"></a> +<span class="sourceLineNo">153</span> }<a name="line.153"></a> +<span class="sourceLineNo">154</span>}<a name="line.154"></a> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</pre> +</div> +</body> +</html> \ No newline at end of file
Modified: websites/production/commons/content/proper/commons-release-plugin/changes-report.html ============================================================================== --- websites/production/commons/content/proper/commons-release-plugin/changes-report.html (original) +++ websites/production/commons/content/proper/commons-release-plugin/changes-report.html Tue Jun 19 03:50:24 2018 @@ -1,14 +1,14 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 05 April 2018 + | Generated by Apache Maven Doxia at 18 June 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 charset="ISO-8859-1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="author" content="Apache Commons Developers" /> - <meta name="Date-Revision-yyyymmdd" content="20180405" /> + <meta name="Date-Revision-yyyymmdd" content="20180618" /> <meta http-equiv="Content-Language" content="en" /> <title>Commons Release Plugin – Apache Commons Release Plugin Changes</title> @@ -36,8 +36,8 @@ <a class="brand" href="http://commons.apache.org/proper/commons-release-plugin/">Apache Commons Release Plugin ™</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> + <li id="publishDate">Last Published: 18 June 2018</li> + <li class="divider">|</li> <li id="projectVersion">Version: 1.3</li> </ul> <div class="pull-right"> <ul class="nav"> <li> @@ -275,67 +275,98 @@ <th>Date</th> <th>Description</th></tr> <tr class="b"> +<td><a href="#a1.3">1.3</a></td> +<td>2018-06-15</td> +<td>Version 1.3</td></tr> +<tr class="a"> <td><a href="#a1.2">1.2</a></td> <td>2018-04-02</td> <td>Version 1.2</td></tr> -<tr class="a"> +<tr class="b"> <td><a href="#a1.1">1.1</a></td> <td>2018-02-28</td> <td>1.1</td></tr> -<tr class="b"> +<tr class="a"> <td><a href="#a1.0">1.0</a></td> <td>2018-01-10</td> <td>Initial release</td></tr></table></div> <div class="section"> -<h3 id="a1.2">Release 1.2 – 2018-04-02</h3> +<h3 id="a1.3">Release 1.3 – 2018-06-15</h3> <table border="0" class="bodyTable"> -<tr class="a"> +<tr class="b"> <th>Type</th> <th>Changes</th> <th>By</th></tr> +<tr class="a"> +<td><img src="images/update.gif" alt="Update" title="Update" /></td> +<td>Remove md5 signatures from release artifacts. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-117">COMMONSSITE-117</a>.</td> +<td><a href="team-list.html#chtompki">chtompki</a></td></tr> +<tr class="b"> +<td><img src="images/update.gif" alt="Update" title="Update" /></td> +<td>Put unpacked site in scm dev dist directory for navigating purposes. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-113">COMMONSSITE-113</a>.</td> +<td><a href="team-list.html#chtompki">chtompki</a></td></tr> +<tr class="a"> +<td><img src="images/add.gif" alt="Add" title="Add" /></td> +<td>Add a vote.txt file. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-112">COMMONSSITE-112</a>.</td> +<td><a href="team-list.html#ggregory">ggregory</a></td></tr> <tr class="b"> +<td><img src="images/add.gif" alt="Add" title="Add" /></td> +<td>Adding README.html and HEADER.html to staged release. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-108">COMMONSSITE-108</a>.</td> +<td><a href="team-list.html#chtompki">chtompki</a></td></tr> +<tr class="a"> +<td><img src="images/update.gif" alt="Update" title="Update" /></td> +<td>Update platform requirement from Java 7 to Java 8.</td> +<td><a href="team-list.html#ggregory">ggregory</a></td></tr></table></div> +<div class="section"> +<h3 id="a1.2">Release 1.2 – 2018-04-02</h3> +<table border="0" class="bodyTable"> +<tr class="b"> +<th>Type</th> +<th>Changes</th> +<th>By</th></tr> +<tr class="a"> <td><img src="images/fix.gif" alt="Fix" title="Fix" /></td> <td>Adding ./target/commons-release-plugin/scm/RELEASE-NOTES.txt to svn as opposed to ./RELEASE-NOTES.txt. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-107">COMMONSSITE-107</a>.</td> <td><a href="team-list.html#chtompki">chtompki</a></td></tr></table></div> <div class="section"> <h3 id="a1.1">Release 1.1 – 2018-02-28</h3> <table border="0" class="bodyTable"> -<tr class="a"> +<tr class="b"> <th>Type</th> <th>Changes</th> <th>By</th></tr> -<tr class="b"> +<tr class="a"> <td><img src="images/fix.gif" alt="Fix" title="Fix" /></td> <td>Sha1 signature files now reflect actual signatures. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-104">COMMONSSITE-104</a>.</td> <td><a href="team-list.html#chtompki">chtompki</a></td></tr> -<tr class="a"> +<tr class="b"> <td><img src="images/add.gif" alt="Add" title="Add" /></td> <td>Making the project more multi-module compatible. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-98">COMMONSSITE-98</a>.</td> <td><a href="team-list.html#chtompki">chtompki</a></td></tr> -<tr class="b"> +<tr class="a"> <td><img src="images/fix.gif" alt="Fix" title="Fix" /></td> <td>Commons Release Plugin doesn't work with Commons Release Plugin. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-102">COMMONSSITE-102</a>.</td> <td><a href="team-list.html#chtompki">chtompki</a></td></tr> -<tr class="a"> +<tr class="b"> <td><img src="images/fix.gif" alt="Fix" title="Fix" /></td> <td>Make -Dcommons.release.dryRun=true our commit toggle. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-101">COMMONSSITE-101</a>.</td> <td><a href="team-list.html#chtompki">chtompki</a></td></tr></table></div> <div class="section"> <h3 id="a1.0">Release 1.0 – 2018-01-10</h3> <table border="0" class="bodyTable"> -<tr class="b"> +<tr class="a"> <th>Type</th> <th>Changes</th> <th>By</th></tr> -<tr class="a"> +<tr class="b"> <td><img src="images/add.gif" alt="Add" title="Add" /></td> <td>Create commons-release-component project skeleton. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-96">COMMONSSITE-96</a>.</td> <td><a href="team-list.html#chtompki">chtompki</a></td></tr> -<tr class="b"> +<tr class="a"> <td><img src="images/add.gif" alt="Add" title="Add" /></td> <td>Prepare Standard Build integrations, travis, jacoco, checkstyle, etc. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-99">COMMONSSITE-99</a>.</td> <td><a href="team-list.html#chtompki">chtompki</a></td></tr> -<tr class="a"> +<tr class="b"> <td><img src="images/add.gif" alt="Add" title="Add" /></td> <td>Documentation for commons-release-plugin. Fixes <a class="externalLink" href="http://issues.apache.org/jira/browse/COMMONSSITE-97">COMMONSSITE-97</a>.</td> <td><a href="team-list.html#chtompki">chtompki</a></td></tr></table></div></div> Modified: websites/production/commons/content/proper/commons-release-plugin/checkstyle.html ============================================================================== --- websites/production/commons/content/proper/commons-release-plugin/checkstyle.html (original) +++ websites/production/commons/content/proper/commons-release-plugin/checkstyle.html Tue Jun 19 03:50:24 2018 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 05 April 2018 + | Generated by Apache Maven Doxia at 18 June 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 charset="ISO-8859-1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180405" /> + <meta name="Date-Revision-yyyymmdd" content="20180618" /> <meta http-equiv="Content-Language" content="en" /> <title>Commons Release Plugin – Checkstyle Results</title> @@ -35,8 +35,8 @@ <a class="brand" href="http://commons.apache.org/proper/commons-release-plugin/">Apache Commons Release Plugin ™</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> + <li id="publishDate">Last Published: 18 June 2018</li> + <li class="divider">|</li> <li id="projectVersion">Version: 1.3</li> </ul> <div class="pull-right"> <ul class="nav"> <li> @@ -266,7 +266,7 @@ <td class="content"> <div class="section"> <h2><a name="Checkstyle_Results"></a>Checkstyle Results</h2> -<p>The following document contains the results of <a class="externalLink" href="http://checkstyle.sourceforge.net/">Checkstyle</a> 6.19 with /Users/tompkicr/Dropbox/devhome/git/commons-release-plugin/checkstyle.xml ruleset. <a href="checkstyle.rss"><img alt="rss feed" src="images/rss.png" /></a></p></div> +<p>The following document contains the results of <a class="externalLink" href="http://checkstyle.sourceforge.net/">Checkstyle</a> 8.10.1 with /Users/tompkicr/Dropbox/devhome/git/commons-release-plugin/checkstyle.xml ruleset. <a href="checkstyle.rss"><img alt="rss feed" src="images/rss.png" /></a></p></div> <div class="section"> <h2><a name="Summary"></a>Summary</h2> <table border="0" class="bodyTable"> @@ -276,7 +276,7 @@ <th><img src="images/icon_warning_sml.gif" alt="" /> Warnings</th> <th><img src="images/icon_error_sml.gif" alt="" /> Errors</th></tr> <tr class="b"> -<td>13</td> +<td>0</td> <td>0</td> <td>0</td> <td>0</td></tr></table></div> Modified: websites/production/commons/content/proper/commons-release-plugin/checkstyle.rss ============================================================================== --- websites/production/commons/content/proper/commons-release-plugin/checkstyle.rss (original) +++ websites/production/commons/content/proper/commons-release-plugin/checkstyle.rss Tue Jun 19 03:50:24 2018 @@ -25,7 +25,7 @@ under the License. <language>en-us</language> <copyright>©2018 The Apache Software Foundation</copyright> <item> - <title>File: 13, + <title>File: 0, Errors: 0, Warnings: 0, Infos: 0 @@ -44,188 +44,6 @@ under the License. </tr> </thead> <tbody> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.mojos.CommonsSiteCompressionMojoTest.java">org/apache/commons/release/plugin/mojos/CommonsSiteCompressionMojoTest.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.stubs.DistributionDetachmentProjectStub.java">org/apache/commons/release/plugin/stubs/DistributionDetachmentProjectStub.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.mojos.CommonsDistributionDetachmentMojoTest.java">org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojoTest.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.mojos.CommonsDistributionDetachmentMojo.java">org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojoTest.java">org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo.java">org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.SharedFunctions.java">org/apache/commons/release/plugin/SharedFunctions.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.mojos.CommonsSiteCompressionMojo.java">org/apache/commons/release/plugin/mojos/CommonsSiteCompressionMojo.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#LICENSE.txt">LICENSE.txt</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.stubs.package-info.java">org/apache/commons/release/plugin/stubs/package-info.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#NOTICE.txt">NOTICE.txt</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.mojos.package-info.java">org/apache/commons/release/plugin/mojos/package-info.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> - <tr> - <td> - <a href="http://commons.apache.org/proper/commons-release-plugin//checkstyle.html#org.apache.commons.release.plugin.package-info.java">org/apache/commons/release/plugin/package-info.java</a> - </td> - <td> - 0 - </td> - <td> - 0 - </td> - <td> - 0 - </td> - </tr> </tbody> </table> Modified: websites/production/commons/content/proper/commons-release-plugin/clirr-report.html ============================================================================== --- websites/production/commons/content/proper/commons-release-plugin/clirr-report.html (original) +++ websites/production/commons/content/proper/commons-release-plugin/clirr-report.html Tue Jun 19 03:50:24 2018 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 05 April 2018 + | Generated by Apache Maven Doxia at 18 June 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 charset="ISO-8859-1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180405" /> + <meta name="Date-Revision-yyyymmdd" content="20180618" /> <meta http-equiv="Content-Language" content="en" /> <title>Commons Release Plugin – Clirr Results</title> @@ -35,8 +35,8 @@ <a class="brand" href="http://commons.apache.org/proper/commons-release-plugin/">Apache Commons Release Plugin ™</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> + <li id="publishDate">Last Published: 18 June 2018</li> + <li class="divider">|</li> <li id="projectVersion">Version: 1.3</li> </ul> <div class="pull-right"> <ul class="nav"> <li> @@ -268,7 +268,7 @@ <h2><a name="Clirr_Results"></a>Clirr Results</h2> <p>The following document contains the results of <a class="externalLink" href="http://clirr.sourceforge.net/">Clirr</a>.</p> <ul> -<li>Current Version: 1.3-SNAPSHOT</li> +<li>Current Version: 1.3</li> <li>Comparison Version: 1.2</li></ul></div> <div class="section"> <h2><a name="Summary"></a>Summary</h2> @@ -278,19 +278,85 @@ <th>Number</th></tr> <tr class="b"> <td><img alt="Error" src="images/icon_error_sml.gif" /> Error</td> -<td>0</td></tr> +<td>1</td></tr> <tr class="a"> <td><img alt="Warning" src="images/icon_warning_sml.gif" /> Warning</td> <td>0</td></tr> <tr class="b"> <td><img alt="Info" src="images/icon_info_sml.gif" /> Info</td> -<td>0</td></tr></table></div> +<td>5</td></tr></table></div> <div class="section"> <h2><a name="API_Incompatibilities"></a>API Incompatibilities</h2> -<p>No results for the given severities.</p></div> +<table border="0" class="bodyTable"> +<tr class="a"> +<th>Severity</th> +<th>Message</th> +<th>Class</th> +<th>Method / Field</th></tr> +<tr class="b"> +<td><img alt="Error" src="images/icon_error_sml.gif" /></td> +<td>Method 'protected void setBasedir(java.io.File)' has been removed</td> +<td><a href="./xref/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.html">org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo</a></td> +<td>protected void setBasedir(java.io.File)</td></tr> +<tr class="a"> +<td><img alt="Info" src="images/icon_info_sml.gif" /></td> +<td>Method 'protected void setBaseDir(java.io.File)' has been added</td> +<td><a href="./xref/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.html">org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo</a></td> +<td>protected void setBaseDir(java.io.File)</td></tr> +<tr class="b"> +<td><img alt="Info" src="images/icon_info_sml.gif" /></td> +<td>Class org.apache.commons.release.plugin.velocity.HeaderHtmlVelocityDelegate added</td> +<td><a href="./xref/org/apache/commons/release/plugin/velocity/HeaderHtmlVelocityDelegate.html">org.apache.commons.release.plugin.velocity.HeaderHtmlVelocityDelegate</a></td> +<td></td></tr> +<tr class="a"> +<td><img alt="Info" src="images/icon_info_sml.gif" /></td> +<td>Class org.apache.commons.release.plugin.velocity.HeaderHtmlVelocityDelegate$HeaderHtmlVelocityDelegateBuilder added</td> +<td><a href="./xref/org/apache/commons/release/plugin/velocity/HeaderHtmlVelocityDelegate.html">org.apache.commons.release.plugin.velocity.HeaderHtmlVelocityDelegate$HeaderHtmlVelocityDelegateBuilder</a></td> +<td></td></tr> +<tr class="b"> +<td><img alt="Info" src="images/icon_info_sml.gif" /></td> +<td>Class org.apache.commons.release.plugin.velocity.ReadmeHtmlVelocityDelegate added</td> +<td><a href="./xref/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.html">org.apache.commons.release.plugin.velocity.ReadmeHtmlVelocityDelegate</a></td> +<td></td></tr> +<tr class="a"> +<td><img alt="Info" src="images/icon_info_sml.gif" /></td> +<td>Class org.apache.commons.release.plugin.velocity.ReadmeHtmlVelocityDelegate$ReadmeHtmlVelocityDelegateBuilder added</td> +<td><a href="./xref/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.html">org.apache.commons.release.plugin.velocity.ReadmeHtmlVelocityDelegate$ReadmeHtmlVelocityDelegateBuilder</a></td> +<td></td></tr></table></div> <div class="section"> -<h2><a name="API_Changelog"></a>API Changelog</h2> -<p>No results for the given severities.</p></div> +<h2><a name="API_Changelog"></a>API Changelog</h2>The following APIs were modified from version 1.2 to 1.3: +<ul> +<li>Non justified changes +<p></p> +<table border="0" class="bodyTable"> +<tr class="b"> +<th>Class</th> +<th>From</th> +<th>To</th></tr> +<tr class="a"> +<td>org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo</td> +<td>protected void setBaseDir(java.io.File)</td> +<td></td></tr> +<tr class="b"> +<td>org.apache.commons.release.plugin.mojos.CommonsDistributionStagingMojo</td> +<td>protected void setBasedir(java.io.File)</td> +<td></td></tr> +<tr class="a"> +<td>org.apache.commons.release.plugin.velocity.HeaderHtmlVelocityDelegate</td> +<td></td> +<td></td></tr> +<tr class="b"> +<td>org.apache.commons.release.plugin.velocity.HeaderHtmlVelocityDelegate$HeaderHtmlVelocityDelegateBuilder</td> +<td></td> +<td></td></tr> +<tr class="a"> +<td>org.apache.commons.release.plugin.velocity.ReadmeHtmlVelocityDelegate</td> +<td></td> +<td></td></tr> +<tr class="b"> +<td>org.apache.commons.release.plugin.velocity.ReadmeHtmlVelocityDelegate$ReadmeHtmlVelocityDelegateBuilder</td> +<td></td> +<td></td></tr></table></li></ul></div> </td> </tr> </table>
