Skip to content

Commit

Permalink
[SPARK-10421] [BUILD] Exclude curator artifacts from tachyon dependen…
Browse files Browse the repository at this point in the history
…cies.

This avoids them being mistakenly pulled instead of the newer ones that
Spark actually uses. Spark only depends on these artifacts transitively,
so sometimes maven just decides to pick tachyon's version of the
dependency for whatever reason.

Author: Marcelo Vanzin <vanzin@cloudera.com>

Closes #8577 from vanzin/SPARK-10421.
  • Loading branch information
Marcelo Vanzin committed Sep 3, 2015
1 parent 08b0750 commit 208fbca
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,14 @@
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-client</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
Expand Down

0 comments on commit 208fbca

Please sign in to comment.