aboutsummaryrefslogtreecommitdiff
path: root/repl
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-01-20 19:22:24 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-01-20 19:22:24 -0800
commit6e3754bf4759ab3e1e1be978b6b84e6f17742106 (patch)
tree67056d2f4e96fcd5227770a21b9a6b09af28548d /repl
parentc7b5e5f1ec9b86b91cf955fb16130e1ad2fcd2e9 (diff)
downloadspark-6e3754bf4759ab3e1e1be978b6b84e6f17742106.tar.gz
spark-6e3754bf4759ab3e1e1be978b6b84e6f17742106.tar.bz2
spark-6e3754bf4759ab3e1e1be978b6b84e6f17742106.zip
Add Maven build file for streaming, and fix some issues in SBT file
As part of this, changed our Scala 2.9.2 Kafka library to be available as a local Maven repository, following the example in (http://blog.dub.podval.org/2010/01/maven-in-project-repository.html)
Diffstat (limited to 'repl')
-rw-r--r--repl/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index 38e883c7f8..2fc9692969 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -102,6 +102,13 @@
<scope>runtime</scope>
</dependency>
<dependency>
+ <groupId>org.spark-project</groupId>
+ <artifactId>spark-streaming</artifactId>
+ <version>${project.version}</version>
+ <classifier>hadoop1</classifier>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<scope>provided</scope>
@@ -152,6 +159,13 @@
<scope>runtime</scope>
</dependency>
<dependency>
+ <groupId>org.spark-project</groupId>
+ <artifactId>spark-streaming</artifactId>
+ <version>${project.version}</version>
+ <classifier>hadoop2</classifier>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<scope>provided</scope>