HBASE-19355 Missing dependency on hbase-zookeeper module causes CopyTable to fail
This commit is contained in:
parent
0384561423
commit
749361e304
|
@ -143,6 +143,10 @@
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-common</artifactId>
|
<artifactId>hbase-common</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.hbase</groupId>
|
||||||
|
<artifactId>hbase-zookeeper</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<!--Needed by ExportSnapshot. It is reading
|
<!--Needed by ExportSnapshot. It is reading
|
||||||
Snapshot protos. TODO: Move to internal types.-->
|
Snapshot protos. TODO: Move to internal types.-->
|
||||||
|
|
|
@ -823,7 +823,8 @@ public class TableMapReduceUtil {
|
||||||
org.apache.commons.lang3.ArrayUtils.class,
|
org.apache.commons.lang3.ArrayUtils.class,
|
||||||
com.fasterxml.jackson.databind.ObjectMapper.class,
|
com.fasterxml.jackson.databind.ObjectMapper.class,
|
||||||
com.fasterxml.jackson.core.Versioned.class,
|
com.fasterxml.jackson.core.Versioned.class,
|
||||||
com.fasterxml.jackson.annotation.JsonView.class);
|
com.fasterxml.jackson.annotation.JsonView.class,
|
||||||
|
org.apache.hadoop.hbase.zookeeper.ZKWatcher.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue