aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml20
1 files changed, 18 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 861a61d..d22d4c4 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.12.0_5.3.0</version>
+ <version>2.10_0.12.1_5.3.0</version>
<packaging>jar</packaging>
<properties>
@@ -27,6 +27,7 @@
<!-- Maven -->
<maven-compiler-plugin.version>3.0</maven-compiler-plugin.version>
<maven-scala-plugin.version>2.15.2</maven-scala-plugin.version>
+ <maven-source-plugin.version>2.4</maven-source-plugin.version>
<maven.surefire.plugin.version>2.12.3</maven.surefire.plugin.version>
<cdh.version>cdh5.3.0</cdh.version>
@@ -35,6 +36,8 @@
<hadoop.core.version>2.5.0-mr1-${cdh.version}</hadoop.core.version>
<hbase.version>0.98.6-${cdh.version}</hbase.version>
+ <joda-time.version>2.8.2</joda-time.version>
+
<!-- Scala/Scalding/Cascading properties -->
<!-- can be 2.9.3 and 2.10.2 -->
<scala.version>2.10.3</scala.version>
@@ -153,7 +156,12 @@
<!-- HBase -->
<dependency>
<groupId>org.apache.hbase</groupId>
- <artifactId>hbase</artifactId>
+ <artifactId>hbase-client</artifactId>
+ <version>${hbase.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase-server</artifactId>
<version>${hbase.version}</version>
</dependency>
@@ -170,6 +178,12 @@
</dependency>
<dependency>
+ <groupId>joda-time</groupId>
+ <artifactId>joda-time</artifactId>
+ <version>${joda-time.version}</version>
+ </dependency>
+
+ <dependency>
<groupId>com.twitter.elephantbird</groupId>
<artifactId>elephant-bird-core</artifactId>
<version>4.1</version>
@@ -220,6 +234,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
+ <version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
@@ -233,6 +248,7 @@
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
+ <version>${maven-scala-plugin.version}</version>
<executions>
<execution>