You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by an...@apache.org on 2017/11/16 10:51:59 UTC

phoenix git commit: PHOENIX-4368 Fix MapReduce related classes(addendum)

Repository: phoenix
Updated Branches:
  refs/heads/5.x-HBase-2.0 eba5459c5 -> 5bdd3b2d4


PHOENIX-4368 Fix MapReduce related classes(addendum)


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/5bdd3b2d
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/5bdd3b2d
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/5bdd3b2d

Branch: refs/heads/5.x-HBase-2.0
Commit: 5bdd3b2d49ff42228484911a92deadbde7050129
Parents: eba5459
Author: Ankit Singhal <an...@gmail.com>
Authored: Thu Nov 16 16:21:50 2017 +0530
Committer: Ankit Singhal <an...@gmail.com>
Committed: Thu Nov 16 16:21:50 2017 +0530

----------------------------------------------------------------------
 phoenix-core/pom.xml  | 4 ++++
 phoenix-flume/pom.xml | 4 ++++
 phoenix-kafka/pom.xml | 4 ++++
 phoenix-pig/pom.xml   | 4 ++++
 pom.xml               | 5 +++++
 5 files changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/5bdd3b2d/phoenix-core/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-core/pom.xml b/phoenix-core/pom.xml
index 1f54371..ce9bdfe 100644
--- a/phoenix-core/pom.xml
+++ b/phoenix-core/pom.xml
@@ -388,6 +388,10 @@
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-mapreduce</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-common</artifactId>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/5bdd3b2d/phoenix-flume/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-flume/pom.xml b/phoenix-flume/pom.xml
index 536fb76..806b6a3 100644
--- a/phoenix-flume/pom.xml
+++ b/phoenix-flume/pom.xml
@@ -112,6 +112,10 @@
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-mapreduce</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-protocol</artifactId>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/5bdd3b2d/phoenix-kafka/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-kafka/pom.xml b/phoenix-kafka/pom.xml
index e2676974..27187f3 100644
--- a/phoenix-kafka/pom.xml
+++ b/phoenix-kafka/pom.xml
@@ -188,6 +188,10 @@
 			<groupId>org.apache.hbase</groupId>
 			<artifactId>hbase-common</artifactId>
 		</dependency>
+    		<dependency>
+      			<groupId>org.apache.hbase</groupId>
+      			<artifactId>hbase-mapreduce</artifactId>
+    		</dependency>
 		<dependency>
 			<groupId>org.apache.hbase</groupId>
 			<artifactId>hbase-common</artifactId>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/5bdd3b2d/phoenix-pig/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-pig/pom.xml b/phoenix-pig/pom.xml
index 8063003..1b9a0f7 100644
--- a/phoenix-pig/pom.xml
+++ b/phoenix-pig/pom.xml
@@ -86,6 +86,10 @@
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-mapreduce</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-common</artifactId>
       <scope>test</scope>
       <type>test-jar</type>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/5bdd3b2d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index dd816ed..ff2f04d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -620,6 +620,11 @@
       </dependency>
       <dependency>
         <groupId>org.apache.hbase</groupId>
+        <artifactId>hbase-mapreduce</artifactId>
+        <version>${hbase.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.hbase</groupId>
         <artifactId>hbase-hadoop-compat</artifactId>
         <version>${hbase.version}</version>
         <type>test-jar</type>