aboutsummaryrefslogtreecommitdiff
path: root/repl/pom.xml
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-03-02 15:18:19 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-03-02 15:18:19 -0800
commitc3f5e075335a65ea522b2f76716921ec056c52ed (patch)
treef4a19d268063a07fbaa63564d67c56cc210beeb4 /repl/pom.xml
parentfd31adbf27d824f00f62646e13c23f632d1b77d3 (diff)
downloadspark-c3f5e075335a65ea522b2f76716921ec056c52ed.tar.gz
spark-c3f5e075335a65ea522b2f76716921ec056c52ed.tar.bz2
spark-c3f5e075335a65ea522b2f76716921ec056c52ed.zip
SPARK-1121: Include avro for yarn-alpha builds
This lets us explicitly include Avro based on a profile for 0.23.X builds. It makes me sad how convoluted it is to express this logic in Maven. @tgraves and @sryza curious if this works for you. I'm also considering just reverting to how it was before. The only real problem was that Spark advertised a dependency on Avro even though it only really depends transitively on Avro through other deps. Author: Patrick Wendell <pwendell@gmail.com> Closes #49 from pwendell/avro-build-fix and squashes the following commits: 8d6ee92 [Patrick Wendell] SPARK-1121: Add avro to yarn-alpha profile
Diffstat (limited to 'repl/pom.xml')
-rw-r--r--repl/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index 3a6baf5c42..aa01a17602 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -31,6 +31,20 @@
<name>Spark Project REPL</name>
<url>http://spark.apache.org/</url>
+ <!-- SPARK-1121: SPARK-1121: Adds an explicit dependency on Avro to work around
+ a Hadoop 0.23.X issue -->
+ <profiles>
+ <profile>
+ <id>yarn-alpha</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.avro</groupId>
+ <artifactId>avro</artifactId>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
+
<properties>
<deb.install.path>/usr/share/spark</deb.install.path>
<deb.user>root</deb.user>