You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2016/01/12 15:19:35 UTC

hbase git commit: HBASE-14159 Add dependency on hadoop-mapreduce-client-jobclient from hbase-spark.

Repository: hbase
Updated Branches:
  refs/heads/master 840f5ea68 -> 5e89ebcc2


HBASE-14159 Add dependency on hadoop-mapreduce-client-jobclient from hbase-spark.

Adds a test-scope dependency to get rid of following error:

[WARNING] warning: Class org.apache.hadoop.mapred.MiniMRCluster not found - continuing with a stub.
[WARNING] one warning found

Signed-off-by: Sean Busbey <bu...@cloudera.com>


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

Branch: refs/heads/master
Commit: 5e89ebcc2f37366fd1efa7f2317a60552cf9e2b8
Parents: 840f5ea
Author: Apekshit <ap...@gmail.com>
Authored: Mon Jan 11 12:04:53 2016 -0800
Committer: Sean Busbey <bu...@cloudera.com>
Committed: Tue Jan 12 07:48:42 2016 -0600

----------------------------------------------------------------------
 hbase-spark/pom.xml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/5e89ebcc/hbase-spark/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-spark/pom.xml b/hbase-spark/pom.xml
index 2efbca0..8f71a89 100644
--- a/hbase-spark/pom.xml
+++ b/hbase-spark/pom.xml
@@ -520,6 +520,12 @@
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.hadoop</groupId>
+            <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
+            <type>test-jar</type>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
 
@@ -600,10 +606,10 @@
         </plugins>
     </build>
 
-  <profiles>
+    <profiles>
     <!-- Skip the tests in this module -->
-      <profile>
-        <id>skipSparkTests</id>
+        <profile>
+            <id>skipSparkTests</id>
             <activation>
                 <property>
                     <name>skipSparkTests</name>