aboutsummaryrefslogtreecommitdiffstats
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
parentc629b3b1ee85e0cc2b70659105cede6a0012e6f6 (diff)
downloadSpyGlass-0c84fc54a6b8e20be20552f63c9787e7fb9f2c6e.tar.gz
SpyGlass-0c84fc54a6b8e20be20552f63c9787e7fb9f2c6e.zip
Fixed dependencies declarations after testing
-rw-r--r--pom.xml15
-rw-r--r--src/main/resources/pom.xml22
2 files changed, 21 insertions, 16 deletions
diff --git a/pom.xml b/pom.xml
index 86a4129..b2df020 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@
<name>Cascading and Scalding wrapper for HBase with advanced features</name>
<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>
<properties>
@@ -61,18 +61,13 @@
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<repository>
- <id>cloudera-cdh4</id>
- <name>Cloudera CDH4</name>
+ <id>cloudera</id>
+ <name>Cloudera</name>
<url>http://repository.cloudera.com/artifactory/cloudera-repos/</url>
</repository>
- <repository>
+ <repository>
<id>conjars</id>
- <name>Con Jars</name>
- <url>http://conjars.org/repo</url>
- </repository>
- <repository>
- <id>clojars</id>
- <name>Clojars</name>
+ <name>Conjars Repository</name>
<url>http://conjars.org/repo</url>
</repository>
</repositories>
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>