aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorgalarragas <galarragas@gmail.com>2014-08-28 11:20:44 +0100
committergalarragas <galarragas@gmail.com>2014-08-28 11:20:44 +0100
commit0c84fc54a6b8e20be20552f63c9787e7fb9f2c6e (patch)
treefb6d5e2cc6f58bea81551734202b0abe6496e42d /src
parentc629b3b1ee85e0cc2b70659105cede6a0012e6f6 (diff)
downloadSpyGlass-0c84fc54a6b8e20be20552f63c9787e7fb9f2c6e.tar.gz
SpyGlass-0c84fc54a6b8e20be20552f63c9787e7fb9f2c6e.zip
Fixed dependencies declarations after testing
Diffstat (limited to 'src')
-rw-r--r--src/main/resources/pom.xml22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/main/resources/pom.xml b/src/main/resources/pom.xml
index e8d4fc0..2557f79 100644
--- a/src/main/resources/pom.xml
+++ b/src/main/resources/pom.xml
@@ -8,7 +8,7 @@
<description>Cascading and Scalding wrapper for HBase with advanced features</description>
<groupId>parallelai</groupId>
<artifactId>parallelai.spyglass</artifactId>
- <version>2.10_0.10_4.3</version>
+ <version>2.10_0.10_4.4</version>
<packaging>jar</packaging>
<organization>
@@ -58,7 +58,7 @@
<repository>
<id>cloudera-cdh4</id>
<name>Cloudera CDH4</name>
- <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
+ <url>http://repository.cloudera.com/artifactory/cloudera-repos/</url>
</repository>
</repositories>
@@ -75,19 +75,29 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
- <version>2.0.0-mr1-cdh4.5.0</version>
+ <version>2.3.0-mr1-cdh5.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
- <version>2.0.0-cdh4.5.0</version>
+ <version>2.3.0-cdh5.1.0</version>
</dependency>
<!-- HBase -->
<dependency>
<groupId>org.apache.hbase</groupId>
- <artifactId>hbase</artifactId>
- <version>0.94.6-cdh4.5.0</version>
+ <artifactId>hbase-server</artifactId>
+ <version>0.98.1-cdh5.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase-common</artifactId>
+ <version>0.98.1-cdh5.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase-client</artifactId>
+ <version>0.98.1-cdh5.1.0</version>
</dependency>
<dependency>