You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by ss...@apache.org on 2015/03/26 12:35:05 UTC

mahout git commit: MAHOUT-1590 Fixed class path issues, hbase client in integration module was brining in hadoop 2.2 dependencies regardless of hadoop.version used in build

Repository: mahout
Updated Branches:
  refs/heads/master c7241d587 -> b58df10f4


MAHOUT-1590 Fixed class path issues, hbase client in integration module was brining in hadoop 2.2 dependencies regardless of hadoop.version used in build


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

Branch: refs/heads/master
Commit: b58df10f4c822ae989bb436734880940e9063fde
Parents: c7241d5
Author: Stevo Slavic <ss...@gmail.com>
Authored: Thu Mar 26 12:34:34 2015 +0100
Committer: Stevo Slavic <ss...@gmail.com>
Committed: Thu Mar 26 12:34:34 2015 +0100

----------------------------------------------------------------------
 pom.xml | 23 +++++++++++++++++++++--
 1 file changed, 21 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mahout/blob/b58df10f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 2584c44..601345a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -106,7 +106,7 @@
     <mjavadoc.version>2.9.1</mjavadoc.version>
     <hadoop.version>2.6.0</hadoop.version>
     <hadoop.classifier>hadoop2</hadoop.classifier>
-    <hbase.version>0.98.0-${hadoop.classifier}</hbase.version>
+    <hbase.version>1.0.0</hbase.version>
     <lucene.version>4.6.1</lucene.version>
     <slf4j.version>1.7.10</slf4j.version>
     <scala.major>2.10</scala.major>
@@ -274,7 +274,26 @@
             <artifactId>core</artifactId>
           </exclusion>
         </exclusions>
-
+      </dependency>
+      <dependency>
+        <groupId>org.apache.hadoop</groupId>
+        <artifactId>hadoop-common</artifactId>
+        <version>${hadoop.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.hadoop</groupId>
+        <artifactId>hadoop-auth</artifactId>
+        <version>${hadoop.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.hadoop</groupId>
+        <artifactId>hadoop-mapreduce-client-core</artifactId>
+        <version>${hadoop.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.hadoop</groupId>
+        <artifactId>hadoop-yarn-common</artifactId>
+        <version>${hadoop.version}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.lucene</groupId>