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/bb9f01c1 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/bb9f01c1 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/bb9f01c1 Branch: refs/heads/HBASE-18467 Commit: bb9f01c1e400e8594c6356fecff1922c629f9a1a Parents: 21a61ad Author: Chia-Ping Tsai <[email protected]> Authored: Mon Sep 11 16:30:32 2017 +0800 Committer: Chia-Ping Tsai <[email protected]> Committed: Sat Sep 23 01:56:38 2017 +0800 ---------------------------------------------------------------------- src/main/asciidoc/_chapters/configuration.adoc | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/bb9f01c1/src/main/asciidoc/_chapters/configuration.adoc ---------------------------------------------------------------------- diff --git a/src/main/asciidoc/_chapters/configuration.adoc b/src/main/asciidoc/_chapters/configuration.adoc index 7e46156..6c550c4 100644 --- a/src/main/asciidoc/_chapters/configuration.adoc +++ b/src/main/asciidoc/_chapters/configuration.adoc @@ -547,19 +547,14 @@ Usually this ensemble location is kept out in the _hbase-site.xml_ and is picked 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, an HBase client 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> ---- A basic example _hbase-site.xml_ for client only may look as follows:
