aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2013-10-25 09:18:36 -0700
committerPatrick Wendell <pwendell@gmail.com>2013-10-25 09:20:30 -0700
commitaf4a529f6efae7d0f7e5915f0221f31ea755a374 (patch)
treeaab282a7a714f82190fe23bf4355ef0a410e3181 /project
parentad5f579cbfb3f0c9834cc5fdd26ad0745f5f8abf (diff)
downloadspark-af4a529f6efae7d0f7e5915f0221f31ea755a374.tar.gz
spark-af4a529f6efae7d0f7e5915f0221f31ea755a374.tar.bz2
spark-af4a529f6efae7d0f7e5915f0221f31ea755a374.zip
Exclude jopt from kafka dependency.
Kafka uses an older version of jopt that causes bad conflicts with the version used by spark-perf. It's not easy to remove this downstream because of the way that spark-perf uses Spark (by including a spark assembly as an unmanaged jar). This fixes the problem at its source by just never including it.
Diffstat (limited to 'project')
-rw-r--r--project/SparkBuild.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 8d7cbae821..45fd30a7c8 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -292,6 +292,7 @@ object SparkBuild extends Build {
"org.apache.kafka" % "kafka_2.9.2" % "0.8.0-beta1"
exclude("com.sun.jdmk", "jmxtools")
exclude("com.sun.jmx", "jmxri")
+ exclude("net.sf.jopt-simple", "jopt-simple")
)
)