aboutsummaryrefslogtreecommitdiff
path: root/repl
diff options
context:
space:
mode:
authorMikhail Bautin <mbautin@gmail.com>2013-01-22 17:31:11 -0800
committerMikhail Bautin <mbautin@gmail.com>2013-01-22 18:11:51 -0800
commit325297e5c31418f32deeb2a3cc52755094a11cea (patch)
tree9284a7a5927b8dca6d7fe83448be1c646d64ee76 /repl
parent151c47eef5b7330103e7749b3e3f3f010511e0b9 (diff)
downloadspark-325297e5c31418f32deeb2a3cc52755094a11cea.tar.gz
spark-325297e5c31418f32deeb2a3cc52755094a11cea.tar.bz2
spark-325297e5c31418f32deeb2a3cc52755094a11cea.zip
Add an Avro dependency to REPL to make it compile with Hadoop 2
Diffstat (limited to 'repl')
-rw-r--r--repl/pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index 2fc9692969..2dc96beaf5 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -175,6 +175,16 @@
<artifactId>hadoop-client</artifactId>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.avro</groupId>
+ <artifactId>avro</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.avro</groupId>
+ <artifactId>avro-ipc</artifactId>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>
<plugins>