http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html index fb847e9..bbba19f 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html @@ -26,74 +26,69 @@ <span class="sourceLineNo">018</span> */<a name="line.18"></a> <span class="sourceLineNo">019</span>package org.apache.hadoop.hbase.regionserver;<a name="line.19"></a> <span class="sourceLineNo">020</span><a name="line.20"></a> -<span class="sourceLineNo">021</span><a name="line.21"></a> -<span class="sourceLineNo">022</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.22"></a> -<span class="sourceLineNo">023</span>import org.apache.hadoop.hbase.util.ClassSize;<a name="line.23"></a> -<span class="sourceLineNo">024</span>import org.apache.hadoop.hbase.CellComparator;<a name="line.24"></a> -<span class="sourceLineNo">025</span>import org.apache.hadoop.hbase.io.TimeRange;<a name="line.25"></a> +<span class="sourceLineNo">021</span>import java.util.Collections;<a name="line.21"></a> +<span class="sourceLineNo">022</span>import java.util.List;<a name="line.22"></a> +<span class="sourceLineNo">023</span>import org.apache.hadoop.hbase.CellComparator;<a name="line.23"></a> +<span class="sourceLineNo">024</span>import org.apache.hadoop.hbase.util.ClassSize;<a name="line.24"></a> +<span class="sourceLineNo">025</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.25"></a> <span class="sourceLineNo">026</span><a name="line.26"></a> -<span class="sourceLineNo">027</span>import java.util.ArrayList;<a name="line.27"></a> -<span class="sourceLineNo">028</span>import java.util.Arrays;<a name="line.28"></a> -<span class="sourceLineNo">029</span>import java.util.List;<a name="line.29"></a> -<span class="sourceLineNo">030</span><a name="line.30"></a> -<span class="sourceLineNo">031</span>/**<a name="line.31"></a> -<span class="sourceLineNo">032</span> * ImmutableSegment is an abstract class that extends the API supported by a {@link Segment},<a name="line.32"></a> -<span class="sourceLineNo">033</span> * and is not needed for a {@link MutableSegment}.<a name="line.33"></a> -<span class="sourceLineNo">034</span> */<a name="line.34"></a> -<span class="sourceLineNo">035</span>@InterfaceAudience.Private<a name="line.35"></a> -<span class="sourceLineNo">036</span>public abstract class ImmutableSegment extends Segment {<a name="line.36"></a> -<span class="sourceLineNo">037</span><a name="line.37"></a> -<span class="sourceLineNo">038</span> public static final long DEEP_OVERHEAD = Segment.DEEP_OVERHEAD + ClassSize.NON_SYNC_TIMERANGE_TRACKER;<a name="line.38"></a> -<span class="sourceLineNo">039</span><a name="line.39"></a> -<span class="sourceLineNo">040</span> // each sub-type of immutable segment knows whether it is flat or not<a name="line.40"></a> -<span class="sourceLineNo">041</span> protected abstract boolean canBeFlattened();<a name="line.41"></a> +<span class="sourceLineNo">027</span>/**<a name="line.27"></a> +<span class="sourceLineNo">028</span> * ImmutableSegment is an abstract class that extends the API supported by a {@link Segment},<a name="line.28"></a> +<span class="sourceLineNo">029</span> * and is not needed for a {@link MutableSegment}.<a name="line.29"></a> +<span class="sourceLineNo">030</span> */<a name="line.30"></a> +<span class="sourceLineNo">031</span>@InterfaceAudience.Private<a name="line.31"></a> +<span class="sourceLineNo">032</span>public abstract class ImmutableSegment extends Segment {<a name="line.32"></a> +<span class="sourceLineNo">033</span><a name="line.33"></a> +<span class="sourceLineNo">034</span> public static final long DEEP_OVERHEAD = Segment.DEEP_OVERHEAD + ClassSize.NON_SYNC_TIMERANGE_TRACKER;<a name="line.34"></a> +<span class="sourceLineNo">035</span><a name="line.35"></a> +<span class="sourceLineNo">036</span> // each sub-type of immutable segment knows whether it is flat or not<a name="line.36"></a> +<span class="sourceLineNo">037</span> protected abstract boolean canBeFlattened();<a name="line.37"></a> +<span class="sourceLineNo">038</span><a name="line.38"></a> +<span class="sourceLineNo">039</span> public int getNumUniqueKeys() {<a name="line.39"></a> +<span class="sourceLineNo">040</span> return getCellSet().getNumUniqueKeys();<a name="line.40"></a> +<span class="sourceLineNo">041</span> }<a name="line.41"></a> <span class="sourceLineNo">042</span><a name="line.42"></a> -<span class="sourceLineNo">043</span> public int getNumUniqueKeys() {<a name="line.43"></a> -<span class="sourceLineNo">044</span> return getCellSet().getNumUniqueKeys();<a name="line.44"></a> -<span class="sourceLineNo">045</span> }<a name="line.45"></a> -<span class="sourceLineNo">046</span><a name="line.46"></a> -<span class="sourceLineNo">047</span> ///////////////////// CONSTRUCTORS /////////////////////<a name="line.47"></a> -<span class="sourceLineNo">048</span> /**------------------------------------------------------------------------<a name="line.48"></a> -<span class="sourceLineNo">049</span> * Empty C-tor to be used only for CompositeImmutableSegment<a name="line.49"></a> -<span class="sourceLineNo">050</span> */<a name="line.50"></a> -<span class="sourceLineNo">051</span> protected ImmutableSegment(CellComparator comparator) {<a name="line.51"></a> -<span class="sourceLineNo">052</span> super(comparator, TimeRangeTracker.create(TimeRangeTracker.Type.NON_SYNC));<a name="line.52"></a> -<span class="sourceLineNo">053</span> }<a name="line.53"></a> -<span class="sourceLineNo">054</span><a name="line.54"></a> -<span class="sourceLineNo">055</span> /**------------------------------------------------------------------------<a name="line.55"></a> -<span class="sourceLineNo">056</span> * C-tor to be used to build the derived classes<a name="line.56"></a> -<span class="sourceLineNo">057</span> */<a name="line.57"></a> -<span class="sourceLineNo">058</span> protected ImmutableSegment(CellSet cs, CellComparator comparator, MemStoreLAB memStoreLAB) {<a name="line.58"></a> -<span class="sourceLineNo">059</span> super(cs, comparator, memStoreLAB, TimeRangeTracker.create(TimeRangeTracker.Type.NON_SYNC));<a name="line.59"></a> -<span class="sourceLineNo">060</span> }<a name="line.60"></a> -<span class="sourceLineNo">061</span><a name="line.61"></a> -<span class="sourceLineNo">062</span> /**------------------------------------------------------------------------<a name="line.62"></a> -<span class="sourceLineNo">063</span> * Copy C-tor to be used when new CSLMImmutableSegment (derived) is being built from a Mutable one.<a name="line.63"></a> -<span class="sourceLineNo">064</span> * This C-tor should be used when active MutableSegment is pushed into the compaction<a name="line.64"></a> -<span class="sourceLineNo">065</span> * pipeline and becomes an ImmutableSegment.<a name="line.65"></a> -<span class="sourceLineNo">066</span> */<a name="line.66"></a> -<span class="sourceLineNo">067</span> protected ImmutableSegment(Segment segment) {<a name="line.67"></a> -<span class="sourceLineNo">068</span> super(segment);<a name="line.68"></a> -<span class="sourceLineNo">069</span> }<a name="line.69"></a> -<span class="sourceLineNo">070</span><a name="line.70"></a> -<span class="sourceLineNo">071</span> ///////////////////// PUBLIC METHODS /////////////////////<a name="line.71"></a> +<span class="sourceLineNo">043</span> ///////////////////// CONSTRUCTORS /////////////////////<a name="line.43"></a> +<span class="sourceLineNo">044</span> /**------------------------------------------------------------------------<a name="line.44"></a> +<span class="sourceLineNo">045</span> * Empty C-tor to be used only for CompositeImmutableSegment<a name="line.45"></a> +<span class="sourceLineNo">046</span> */<a name="line.46"></a> +<span class="sourceLineNo">047</span> protected ImmutableSegment(CellComparator comparator) {<a name="line.47"></a> +<span class="sourceLineNo">048</span> super(comparator, TimeRangeTracker.create(TimeRangeTracker.Type.NON_SYNC));<a name="line.48"></a> +<span class="sourceLineNo">049</span> }<a name="line.49"></a> +<span class="sourceLineNo">050</span><a name="line.50"></a> +<span class="sourceLineNo">051</span> /**------------------------------------------------------------------------<a name="line.51"></a> +<span class="sourceLineNo">052</span> * C-tor to be used to build the derived classes<a name="line.52"></a> +<span class="sourceLineNo">053</span> */<a name="line.53"></a> +<span class="sourceLineNo">054</span> protected ImmutableSegment(CellSet cs, CellComparator comparator, MemStoreLAB memStoreLAB) {<a name="line.54"></a> +<span class="sourceLineNo">055</span> super(cs, comparator, memStoreLAB, TimeRangeTracker.create(TimeRangeTracker.Type.NON_SYNC));<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> * Copy C-tor to be used when new CSLMImmutableSegment (derived) is being built from a Mutable one.<a name="line.59"></a> +<span class="sourceLineNo">060</span> * This C-tor should be used when active MutableSegment is pushed into the compaction<a name="line.60"></a> +<span class="sourceLineNo">061</span> * pipeline and becomes an ImmutableSegment.<a name="line.61"></a> +<span class="sourceLineNo">062</span> */<a name="line.62"></a> +<span class="sourceLineNo">063</span> protected ImmutableSegment(Segment segment) {<a name="line.63"></a> +<span class="sourceLineNo">064</span> super(segment);<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> ///////////////////// PUBLIC METHODS /////////////////////<a name="line.67"></a> +<span class="sourceLineNo">068</span><a name="line.68"></a> +<span class="sourceLineNo">069</span> public int getNumOfSegments() {<a name="line.69"></a> +<span class="sourceLineNo">070</span> return 1;<a name="line.70"></a> +<span class="sourceLineNo">071</span> }<a name="line.71"></a> <span class="sourceLineNo">072</span><a name="line.72"></a> -<span class="sourceLineNo">073</span> public int getNumOfSegments() {<a name="line.73"></a> -<span class="sourceLineNo">074</span> return 1;<a name="line.74"></a> +<span class="sourceLineNo">073</span> public List<Segment> getAllSegments() {<a name="line.73"></a> +<span class="sourceLineNo">074</span> return Collections.singletonList(this);<a name="line.74"></a> <span class="sourceLineNo">075</span> }<a name="line.75"></a> <span class="sourceLineNo">076</span><a name="line.76"></a> -<span class="sourceLineNo">077</span> public List<Segment> getAllSegments() {<a name="line.77"></a> -<span class="sourceLineNo">078</span> List<Segment> res = new ArrayList<>(Arrays.asList(this));<a name="line.78"></a> -<span class="sourceLineNo">079</span> return res;<a name="line.79"></a> -<span class="sourceLineNo">080</span> }<a name="line.80"></a> -<span class="sourceLineNo">081</span><a name="line.81"></a> -<span class="sourceLineNo">082</span> @Override<a name="line.82"></a> -<span class="sourceLineNo">083</span> public String toString() {<a name="line.83"></a> -<span class="sourceLineNo">084</span> String res = super.toString();<a name="line.84"></a> -<span class="sourceLineNo">085</span> res += "Num uniques "+getNumUniqueKeys()+"; ";<a name="line.85"></a> -<span class="sourceLineNo">086</span> return res;<a name="line.86"></a> -<span class="sourceLineNo">087</span> }<a name="line.87"></a> -<span class="sourceLineNo">088</span>}<a name="line.88"></a> +<span class="sourceLineNo">077</span> @Override<a name="line.77"></a> +<span class="sourceLineNo">078</span> public String toString() {<a name="line.78"></a> +<span class="sourceLineNo">079</span> String res = super.toString();<a name="line.79"></a> +<span class="sourceLineNo">080</span> res += "Num uniques "+getNumUniqueKeys()+"; ";<a name="line.80"></a> +<span class="sourceLineNo">081</span> return res;<a name="line.81"></a> +<span class="sourceLineNo">082</span> }<a name="line.82"></a> +<span class="sourceLineNo">083</span>}<a name="line.83"></a>
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/export_control.html ---------------------------------------------------------------------- diff --git a/export_control.html b/export_control.html index 9ba076f..0ea830d 100644 --- a/export_control.html +++ b/export_control.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Export Control @@ -336,7 +336,7 @@ for more details.</p> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/checkstyle.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/checkstyle.html b/hbase-annotations/checkstyle.html index e8b9cca..f364480 100644 --- a/hbase-annotations/checkstyle.html +++ b/hbase-annotations/checkstyle.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Checkstyle Results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -150,7 +150,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependencies.html b/hbase-annotations/dependencies.html index 0dac47d..a7abb40 100644 --- a/hbase-annotations/dependencies.html +++ b/hbase-annotations/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -272,7 +272,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-convergence.html b/hbase-annotations/dependency-convergence.html index 60ed728..53bb382 100644 --- a/hbase-annotations/dependency-convergence.html +++ b/hbase-annotations/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-info.html b/hbase-annotations/dependency-info.html index a1ad19c..43e050e 100644 --- a/hbase-annotations/dependency-info.html +++ b/hbase-annotations/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -147,7 +147,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-management.html b/hbase-annotations/dependency-management.html index 71045da..ee68d14 100644 --- a/hbase-annotations/dependency-management.html +++ b/hbase-annotations/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/index.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/index.html b/hbase-annotations/index.html index ec12b2c..d63a4f6 100644 --- a/hbase-annotations/index.html +++ b/hbase-annotations/index.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -119,7 +119,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/integration.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/integration.html b/hbase-annotations/integration.html index 7adbb10..0e2e330 100644 --- a/hbase-annotations/integration.html +++ b/hbase-annotations/integration.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – CI Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -126,7 +126,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/issue-tracking.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/issue-tracking.html b/hbase-annotations/issue-tracking.html index 0ce6453..b03b785 100644 --- a/hbase-annotations/issue-tracking.html +++ b/hbase-annotations/issue-tracking.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Issue Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -123,7 +123,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/license.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/license.html b/hbase-annotations/license.html index 82b0532..006f9e2 100644 --- a/hbase-annotations/license.html +++ b/hbase-annotations/license.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Licenses</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -326,7 +326,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/mail-lists.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/mail-lists.html b/hbase-annotations/mail-lists.html index 479c710..952fc4b 100644 --- a/hbase-annotations/mail-lists.html +++ b/hbase-annotations/mail-lists.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -176,7 +176,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/plugin-management.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/plugin-management.html b/hbase-annotations/plugin-management.html index b9734d3..7126788 100644 --- a/hbase-annotations/plugin-management.html +++ b/hbase-annotations/plugin-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -271,7 +271,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/plugins.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/plugins.html b/hbase-annotations/plugins.html index 06f41f6..15bbbc9 100644 --- a/hbase-annotations/plugins.html +++ b/hbase-annotations/plugins.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -222,7 +222,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/project-info.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-info.html b/hbase-annotations/project-info.html index f4957b2..3b41256 100644 --- a/hbase-annotations/project-info.html +++ b/hbase-annotations/project-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -167,7 +167,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/project-reports.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-reports.html b/hbase-annotations/project-reports.html index 8844ed5..0662aa9 100644 --- a/hbase-annotations/project-reports.html +++ b/hbase-annotations/project-reports.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Generated Reports</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -128,7 +128,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/project-summary.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-summary.html b/hbase-annotations/project-summary.html index d495af5..24787ba 100644 --- a/hbase-annotations/project-summary.html +++ b/hbase-annotations/project-summary.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -166,7 +166,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/source-repository.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/source-repository.html b/hbase-annotations/source-repository.html index 3679c14..9500454 100644 --- a/hbase-annotations/source-repository.html +++ b/hbase-annotations/source-repository.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Source Code Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -134,7 +134,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-annotations/team-list.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/team-list.html b/hbase-annotations/team-list.html index ddd1e6a..fe98022 100644 --- a/hbase-annotations/team-list.html +++ b/hbase-annotations/team-list.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Team</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -553,7 +553,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependencies.html b/hbase-build-configuration/dependencies.html index c7b88d3..bf892ed 100644 --- a/hbase-build-configuration/dependencies.html +++ b/hbase-build-configuration/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-convergence.html b/hbase-build-configuration/dependency-convergence.html index d2317dd..671b60c 100644 --- a/hbase-build-configuration/dependency-convergence.html +++ b/hbase-build-configuration/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-info.html b/hbase-build-configuration/dependency-info.html index 8a16b7d..7db5437 100644 --- a/hbase-build-configuration/dependency-info.html +++ b/hbase-build-configuration/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-management.html b/hbase-build-configuration/dependency-management.html index 3cddef8..39703f0 100644 --- a/hbase-build-configuration/dependency-management.html +++ b/hbase-build-configuration/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependencies.html b/hbase-build-configuration/hbase-archetypes/dependencies.html index 9c92711..e80eeae 100644 --- a/hbase-build-configuration/hbase-archetypes/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/dependency-convergence.html index d76bc43..24a2b5e 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-convergence.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-info.html b/hbase-build-configuration/hbase-archetypes/dependency-info.html index 5a2d35f..9ad9d92 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-info.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-management.html b/hbase-build-configuration/hbase-archetypes/dependency-management.html index 476f6c7..57e951b 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-management.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html index 3793331..a7f6289 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html index 6b386bb..2346331 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html index 105ffc6..0c0fe1f 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html index 7ea8841..7eb9fea 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html index 21503c0..30482a8 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -119,7 +119,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html index 2ce2124..216c7ec 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – CI Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -126,7 +126,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html index cde12c4..b519bc9 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Issue Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -123,7 +123,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html index eba60d0..e5832ab 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Licenses</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -326,7 +326,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html index d6fb5f5..e52ec10 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -176,7 +176,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html index f0ecfa7..e41dbfc 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -271,7 +271,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html index a2e8e0a..4dd899f 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -218,7 +218,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html index aba863e..0078455 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -167,7 +167,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html index 0d91aef..8749033 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -163,7 +163,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html index d03c6ca..9b4a877 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Source Code Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -134,7 +134,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html index 5626614..376c561 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Team</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -553,7 +553,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html index bccd7b7..755f0b9 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Checkstyle Results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -150,7 +150,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html index 0331a41..15f452e 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -4168,7 +4168,7 @@ The following provides more details on the included cryptographic software: <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-convergence.html index 6c1eddc..22856a2 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-convergence.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -912,7 +912,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-info.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-info.html index 3f4e4ad..b40cd1e 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-info.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -147,7 +147,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-management.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-management.html index 167e835..1fa0b7d 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-management.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/index.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/index.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/index.html index b12bcd4..b6978b0 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/index.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/index.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -119,7 +119,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/integration.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/integration.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/integration.html index e749b7d..a5824b8 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/integration.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/integration.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – CI Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -126,7 +126,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/issue-tracking.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/issue-tracking.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/issue-tracking.html index ac9fa3e..6188aa0 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/issue-tracking.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/issue-tracking.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Issue Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -123,7 +123,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/license.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/license.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/license.html index 8889b11..d973f1e 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/license.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/license.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Licenses</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -326,7 +326,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/mail-lists.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/mail-lists.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/mail-lists.html index eabf0d9..28b8604 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/mail-lists.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/mail-lists.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -176,7 +176,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugin-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugin-management.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugin-management.html index b371a6e..0eb82f6 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugin-management.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugin-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -271,7 +271,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugins.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugins.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugins.html index 4150b82..2d639cc 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugins.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/plugins.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -226,7 +226,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/83bf6175/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-info.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-info.html index 5e019a2..4a42115 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-info.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20171229" /> + <meta name="Date-Revision-yyyymmdd" content="20171230" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -167,7 +167,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2017-12-29</li> + <li id="publishDate" class="pull-right">Last Published: 2017-12-30</li> </p> </div>
