http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/devapidocs/src-html/org/apache/hadoop/hbase/Version.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/Version.html b/devapidocs/src-html/org/apache/hadoop/hbase/Version.html index 0973c2c..b04cfa0 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/Version.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/Version.html @@ -16,11 +16,11 @@ <span class="sourceLineNo">008</span>@InterfaceAudience.Private<a name="line.8"></a> <span class="sourceLineNo">009</span>public class Version {<a name="line.9"></a> <span class="sourceLineNo">010</span> public static final String version = "3.0.0-SNAPSHOT";<a name="line.10"></a> -<span class="sourceLineNo">011</span> public static final String revision = "d155a4e33d279bdf4b57b08ebc8220fe5d97f4cc";<a name="line.11"></a> +<span class="sourceLineNo">011</span> public static final String revision = "8a8be33c71c851fbe0dc57543f49d549e19385a3";<a name="line.11"></a> <span class="sourceLineNo">012</span> public static final String user = "jenkins";<a name="line.12"></a> -<span class="sourceLineNo">013</span> public static final String date = "Tue Jan 16 14:43:01 UTC 2018";<a name="line.13"></a> +<span class="sourceLineNo">013</span> public static final String date = "Wed Jan 17 14:43:42 UTC 2018";<a name="line.13"></a> <span class="sourceLineNo">014</span> public static final String url = "git://asf920.gq1.ygridcore.net/home/jenkins/jenkins-slave/workspace/hbase_generate_website/hbase";<a name="line.14"></a> -<span class="sourceLineNo">015</span> public static final String srcChecksum = "9fa98e35d31458ece0292b3e92cb7479";<a name="line.15"></a> +<span class="sourceLineNo">015</span> public static final String srcChecksum = "e5572c0b2d6831f4d7aac49022597c43";<a name="line.15"></a> <span class="sourceLineNo">016</span>}<a name="line.16"></a>
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseHFileCleanerDelegate.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseHFileCleanerDelegate.html b/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseHFileCleanerDelegate.html index 2fea53f..607a8e0 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseHFileCleanerDelegate.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseHFileCleanerDelegate.html @@ -31,7 +31,7 @@ <span class="sourceLineNo">023</span> * Base class for the hfile cleaning function inside the master. By default, only the<a name="line.23"></a> <span class="sourceLineNo">024</span> * {@link TimeToLiveHFileCleaner} is called.<a name="line.24"></a> <span class="sourceLineNo">025</span> * <p><a name="line.25"></a> -<span class="sourceLineNo">026</span> * If other effects are needed, implement your own LogCleanerDelegate and add it to the<a name="line.26"></a> +<span class="sourceLineNo">026</span> * If other effects are needed, implement your own HFileCleanerDelegate and add it to the<a name="line.26"></a> <span class="sourceLineNo">027</span> * configuration "hbase.master.hfilecleaner.plugins", which is a comma-separated list of fully<a name="line.27"></a> <span class="sourceLineNo">028</span> * qualified class names. The <code>HFileCleaner</code> will build the cleaner chain in<a name="line.28"></a> <span class="sourceLineNo">029</span> * order the order specified by the configuration.<a name="line.29"></a> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseLogCleanerDelegate.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseLogCleanerDelegate.html b/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseLogCleanerDelegate.html index 8826841..c776c54 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseLogCleanerDelegate.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/BaseLogCleanerDelegate.html @@ -29,40 +29,29 @@ <span class="sourceLineNo">021</span>import org.apache.hadoop.fs.FileStatus;<a name="line.21"></a> <span class="sourceLineNo">022</span><a name="line.22"></a> <span class="sourceLineNo">023</span>/**<a name="line.23"></a> -<span class="sourceLineNo">024</span> * Base class for the log cleaning function inside the master. By default, two<a name="line.24"></a> -<span class="sourceLineNo">025</span> * cleaners: <code>TimeToLiveLogCleaner</code> and<a name="line.25"></a> -<span class="sourceLineNo">026</span> * <code>ReplicationLogCleaner</code> are called in order. So if other effects<a name="line.26"></a> -<span class="sourceLineNo">027</span> * are needed, implement your own LogCleanerDelegate and add it to the<a name="line.27"></a> -<span class="sourceLineNo">028</span> * configuration "hbase.master.logcleaner.plugins", which is a comma-separated<a name="line.28"></a> -<span class="sourceLineNo">029</span> * list of fully qualified class names. LogsCleaner will add it to the chain.<a name="line.29"></a> -<span class="sourceLineNo">030</span> * <p><a name="line.30"></a> -<span class="sourceLineNo">031</span> * HBase ships with LogsCleaner as the default implementation.<a name="line.31"></a> -<span class="sourceLineNo">032</span> * <p><a name="line.32"></a> -<span class="sourceLineNo">033</span> * This interface extends Configurable, so setConf needs to be called once<a name="line.33"></a> -<span class="sourceLineNo">034</span> * before using the cleaner. Since LogCleanerDelegates are created in<a name="line.34"></a> -<span class="sourceLineNo">035</span> * LogsCleaner by reflection. Classes that implements this interface should<a name="line.35"></a> -<span class="sourceLineNo">036</span> * provide a default constructor.<a name="line.36"></a> -<span class="sourceLineNo">037</span> */<a name="line.37"></a> -<span class="sourceLineNo">038</span>@InterfaceAudience.Private<a name="line.38"></a> -<span class="sourceLineNo">039</span>public abstract class BaseLogCleanerDelegate extends BaseFileCleanerDelegate {<a name="line.39"></a> -<span class="sourceLineNo">040</span><a name="line.40"></a> -<span class="sourceLineNo">041</span> @Override<a name="line.41"></a> -<span class="sourceLineNo">042</span> public boolean isFileDeletable(FileStatus fStat) {<a name="line.42"></a> -<span class="sourceLineNo">043</span> return isLogDeletable(fStat);<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> /**<a name="line.46"></a> -<span class="sourceLineNo">047</span> * Should the master delete the log or keep it?<a name="line.47"></a> -<span class="sourceLineNo">048</span> * <p><a name="line.48"></a> -<span class="sourceLineNo">049</span> * Implementing classes should override {@link #isFileDeletable(FileStatus)} instead.<a name="line.49"></a> -<span class="sourceLineNo">050</span> * @param fStat file status of the file<a name="line.50"></a> -<span class="sourceLineNo">051</span> * @return true if the log is deletable, false (default) if not<a name="line.51"></a> -<span class="sourceLineNo">052</span> */<a name="line.52"></a> -<span class="sourceLineNo">053</span> @Deprecated<a name="line.53"></a> -<span class="sourceLineNo">054</span> public boolean isLogDeletable(FileStatus fStat) {<a name="line.54"></a> -<span class="sourceLineNo">055</span> return false;<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">024</span> * Base class for the log cleaning function inside the master. By default, three<a name="line.24"></a> +<span class="sourceLineNo">025</span> * cleaners: <code>TimeToLiveLogCleaner</code>,<a name="line.25"></a> +<span class="sourceLineNo">026</span> * <code>TimeToLiveProcedureWALCleaner</code> and<a name="line.26"></a> +<span class="sourceLineNo">027</span> * <code>ReplicationLogCleaner</code> are called in order. So if other effects<a name="line.27"></a> +<span class="sourceLineNo">028</span> * are needed, implement your own LogCleanerDelegate and add it to the<a name="line.28"></a> +<span class="sourceLineNo">029</span> * configuration "hbase.master.logcleaner.plugins", which is a comma-separated<a name="line.29"></a> +<span class="sourceLineNo">030</span> * list of fully qualified class names. LogsCleaner will add it to the chain.<a name="line.30"></a> +<span class="sourceLineNo">031</span> * <p><a name="line.31"></a> +<span class="sourceLineNo">032</span> * HBase ships with LogsCleaner as the default implementation.<a name="line.32"></a> +<span class="sourceLineNo">033</span> * <p><a name="line.33"></a> +<span class="sourceLineNo">034</span> * This interface extends Configurable, so setConf needs to be called once<a name="line.34"></a> +<span class="sourceLineNo">035</span> * before using the cleaner. Since LogCleanerDelegates are created in<a name="line.35"></a> +<span class="sourceLineNo">036</span> * LogsCleaner by reflection. Classes that implements this interface should<a name="line.36"></a> +<span class="sourceLineNo">037</span> * provide a default constructor.<a name="line.37"></a> +<span class="sourceLineNo">038</span> */<a name="line.38"></a> +<span class="sourceLineNo">039</span>@InterfaceAudience.Private<a name="line.39"></a> +<span class="sourceLineNo">040</span>public abstract class BaseLogCleanerDelegate extends BaseFileCleanerDelegate {<a name="line.40"></a> +<span class="sourceLineNo">041</span><a name="line.41"></a> +<span class="sourceLineNo">042</span> @Override<a name="line.42"></a> +<span class="sourceLineNo">043</span> public boolean isFileDeletable(FileStatus fStat) {<a name="line.43"></a> +<span class="sourceLineNo">044</span> return false;<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> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/TimeToLiveLogCleaner.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/TimeToLiveLogCleaner.html b/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/TimeToLiveLogCleaner.html index 148f0d6..62c56a8 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/TimeToLiveLogCleaner.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/master/cleaner/TimeToLiveLogCleaner.html @@ -49,7 +49,7 @@ <span class="sourceLineNo">041</span> private boolean stopped = false;<a name="line.41"></a> <span class="sourceLineNo">042</span><a name="line.42"></a> <span class="sourceLineNo">043</span> @Override<a name="line.43"></a> -<span class="sourceLineNo">044</span> public boolean isLogDeletable(FileStatus fStat) {<a name="line.44"></a> +<span class="sourceLineNo">044</span> public boolean isFileDeletable(FileStatus fStat) {<a name="line.44"></a> <span class="sourceLineNo">045</span> // Files are validated for the second time here,<a name="line.45"></a> <span class="sourceLineNo">046</span> // if it causes a bottleneck this logic needs refactored<a name="line.46"></a> <span class="sourceLineNo">047</span> if (!AbstractFSWALProvider.validateWALFilename(fStat.getPath().getName())) {<a name="line.47"></a> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/export_control.html ---------------------------------------------------------------------- diff --git a/export_control.html b/export_control.html index ad4e7b1..545ec9e 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/checkstyle.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/checkstyle.html b/hbase-annotations/checkstyle.html index 666704d..f68b80c 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependencies.html b/hbase-annotations/dependencies.html index ce50312..a66b468 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-convergence.html b/hbase-annotations/dependency-convergence.html index 1091714..26e1265 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-info.html b/hbase-annotations/dependency-info.html index 7d83bde..9e991d9 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-management.html b/hbase-annotations/dependency-management.html index 74fc131..2b8c626 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/index.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/index.html b/hbase-annotations/index.html index 8315f9e..0e7c243 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/integration.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/integration.html b/hbase-annotations/integration.html index 70a1ef8..b8f6efa 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/issue-tracking.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/issue-tracking.html b/hbase-annotations/issue-tracking.html index dc06591..e8c38c3 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/license.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/license.html b/hbase-annotations/license.html index 91f04c9..cce0d9a 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/mail-lists.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/mail-lists.html b/hbase-annotations/mail-lists.html index 39c1235..fb3380e 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/plugin-management.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/plugin-management.html b/hbase-annotations/plugin-management.html index 139db4e..c65a44d 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/plugins.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/plugins.html b/hbase-annotations/plugins.html index 4a4f4db..d56696d 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/project-info.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-info.html b/hbase-annotations/project-info.html index 11648c1..918462b 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/project-reports.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-reports.html b/hbase-annotations/project-reports.html index 22f9e82..64b9b42 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/project-summary.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-summary.html b/hbase-annotations/project-summary.html index 6cf0dfc..98b969c 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/source-repository.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/source-repository.html b/hbase-annotations/source-repository.html index 90da800..6932554 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-annotations/team-list.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/team-list.html b/hbase-annotations/team-list.html index b8e6fbd..8837158 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-build-configuration/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependencies.html b/hbase-build-configuration/dependencies.html index 6285b00..6e1f00d 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-build-configuration/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-convergence.html b/hbase-build-configuration/dependency-convergence.html index 43eec24..2614014 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-build-configuration/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-info.html b/hbase-build-configuration/dependency-info.html index 4dd0b4b..8fab477 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-build-configuration/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-management.html b/hbase-build-configuration/dependency-management.html index 46924cc..0bf7488 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 8e5e3b2..c489eb1 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 ce847c6..c466226 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 d15e1c6..9ab2bd4 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 24f1614..839f284 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 aa20c45..0fde3e4 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 cd5849c..479f701 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 d139950..99f3545 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 0e73490..fe6ca5f 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 9a63a38..11c3868 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 16985f9..54c44df 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 878ce74..81669c4 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 d34a5e3..066a799 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 acfa824..0500c46 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 a3ae71b..4793d55 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 dd44aa2..e7c4b63 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 b8f0167..a065347 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 a462613..d9ef447 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 0b45548..570ccfd 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 2410d7b..c633c46 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 c60eeba..48c980b 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 b282295..d9c9b43 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 0cf4cf3..da4562c 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 ca62ba7..23ee38b 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 cf35955..3c321ab 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 7000532..2470c07 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 8873f73..724fa86 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 71266a3..e9680ee 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 21b1fca..d1eda58 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 f8d84d5..3ddbc68 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 8e7c199..30997af 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 cfa5058..f380ecb 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/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 a521133..96dbd78 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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c13644e5/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-reports.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-reports.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-reports.html index 41c4b3f..a7ad5b6 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/project-reports.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/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="20180116" /> + <meta name="Date-Revision-yyyymmdd" content="20180117" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – 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: 2018-01-16</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-17</li> </p> </div>
