aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRohit Rai <rohit@tuplejump.com>2013-06-02 13:03:45 +0530
committerRohit Rai <rohit@tuplejump.com>2013-06-02 13:03:45 +0530
commit6d8423fd1b490d541f0ea379068b8954002d624f (patch)
tree2dd2887bf213a6a53010bd648d6c09fd4b744a52 /examples
parent81c2adc15c9e232846d4ad0adf14d007039409fa (diff)
downloadspark-6d8423fd1b490d541f0ea379068b8954002d624f.tar.gz
spark-6d8423fd1b490d541f0ea379068b8954002d624f.tar.bz2
spark-6d8423fd1b490d541f0ea379068b8954002d624f.zip
Adding deps to examples/pom.xml
Fixing exclusion in examples deps in SparkBuild.scala
Diffstat (limited to 'examples')
-rw-r--r--examples/pom.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/examples/pom.xml b/examples/pom.xml
index c42d2bcdb9..b4c5251d68 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -34,6 +34,41 @@
<artifactId>scalacheck_${scala.version}</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.cassandra</groupId>
+ <artifactId>cassandra-all</artifactId>
+ <version>1.2.5</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
+ <artifactId>concurrentlinkedhashmap-lru</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.ning</groupId>
+ <artifactId>compress-lzf</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>jline</groupId>
+ <artifactId>jline</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.cassandra.deps</groupId>
+ <artifactId>avro</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>
<outputDirectory>target/scala-${scala.version}/classes</outputDirectory>