aboutsummaryrefslogtreecommitdiff
path: root/core/pom.xml
diff options
context:
space:
mode:
authorXiangrui Meng <meng@databricks.com>2015-05-28 21:20:54 -0700
committerXiangrui Meng <meng@databricks.com>2015-05-28 21:20:54 -0700
commitc45d58c143d68cb807186acc9d060daa8549dd5c (patch)
tree4b05e6682cfe4606fff1778182a2f7991fb460d1 /core/pom.xml
parentb069ad23d9b6cbfb3a8bf245547add4816669075 (diff)
downloadspark-c45d58c143d68cb807186acc9d060daa8549dd5c.tar.gz
spark-c45d58c143d68cb807186acc9d060daa8549dd5c.tar.bz2
spark-c45d58c143d68cb807186acc9d060daa8549dd5c.zip
[SPARK-7926] [PYSPARK] use the official Pyrolite release
Switch to the official Pyrolite release from the one published under `org.spark-project`. Thanks irmen for making the releases on Maven Central. We didn't upgrade to 4.6 because we don't have enough time for QA. I excludes `serpent` from its dependencies because we don't use it in Spark. ~~~ [info] +-net.jpountz.lz4:lz4:1.3.0 [info] +-net.razorvine:pyrolite:4.4 [info] +-net.sf.py4j:py4j:0.8.2.1 ~~~ davies Author: Xiangrui Meng <meng@databricks.com> Closes #6472 from mengxr/SPARK-7926 and squashes the following commits: 7b3c6bf [Xiangrui Meng] use the official Pyrolite release
Diffstat (limited to 'core/pom.xml')
-rw-r--r--core/pom.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/pom.xml b/core/pom.xml
index bfa49d0d6d..e58efe495e 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -377,9 +377,15 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.spark-project</groupId>
+ <groupId>net.razorvine</groupId>
<artifactId>pyrolite</artifactId>
<version>4.4</version>
+ <exclusions>
+ <exclusion>
+ <groupId>net.razorvine</groupId>
+ <artifactId>serpent</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>net.sf.py4j</groupId>