You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ch...@apache.org on 2017/12/18 09:27:12 UTC

hbase git commit: HBASE-18787 Fix the "dependencies connecting to an HBase cluster"

Repository: hbase
Updated Branches:
  refs/heads/branch-2 6f98b7e4d -> 2cfb89c54


HBASE-18787 Fix the "dependencies connecting to an HBase cluster"


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2cfb89c5
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2cfb89c5
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2cfb89c5

Branch: refs/heads/branch-2
Commit: 2cfb89c54dc5d98d2da39760f1ec0693ba143339
Parents: 6f98b7e
Author: Chia-Ping Tsai <ch...@gmail.com>
Authored: Mon Dec 18 17:26:32 2017 +0800
Committer: Chia-Ping Tsai <ch...@gmail.com>
Committed: Mon Dec 18 17:26:32 2017 +0800

----------------------------------------------------------------------
 src/main/asciidoc/_chapters/configuration.adoc | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/2cfb89c5/src/main/asciidoc/_chapters/configuration.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/_chapters/configuration.adoc b/src/main/asciidoc/_chapters/configuration.adoc
index af31e21..58e7a68 100644
--- a/src/main/asciidoc/_chapters/configuration.adoc
+++ b/src/main/asciidoc/_chapters/configuration.adoc
@@ -548,19 +548,15 @@ Usually this the ensemble location is kept out in the _hbase-site.xml_ and is pi
 
 If you are configuring an IDE to run an HBase client, you should include the _conf/_ directory on your classpath so _hbase-site.xml_ settings can be found (or add _src/test/resources_ to pick up the hbase-site.xml used by tests).
 
-Minimally, a client of HBase needs several libraries in its `CLASSPATH` when connecting to a cluster, including:
-[source]
+Minimally, an HBase client needs hbase-client module in its dependencies when connecting to a cluster:
+[source,xml]
 ----
 
-commons-configuration (commons-configuration-1.6.jar)
-commons-lang3 (commons-lang3-3.6.jar)
-commons-logging (commons-logging-1.1.1.jar)
-hadoop-core (hadoop-core-1.0.0.jar)
-hbase (hbase-0.92.0.jar)
-log4j (log4j-1.2.16.jar)
-slf4j-api (slf4j-api-1.5.8.jar)
-slf4j-log4j (slf4j-log4j12-1.5.8.jar)
-zookeeper (zookeeper-3.4.2.jar)
+<dependency>
+  <groupId>org.apache.hbase</groupId>
+  <artifactId>hbase-client</artifactId>
+  <version>1.2.4</version>
+</dependency>
 ----
 
 An example basic _hbase-site.xml_ for client only might look as follows: