aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorAlex Bozarth <ajbozart@us.ibm.com>2016-01-28 23:34:50 -0800
committerCheng Lian <lian@databricks.com>2016-01-28 23:34:50 -0800
commit8d3cc3de7d116190911e7943ef3233fe3b7db1bf (patch)
treebeb1aaf85f80b46e167429f82040e1f28641771b /common
parent721ced28b522cc00b45ca7fa32a99e80ad3de2f7 (diff)
downloadspark-8d3cc3de7d116190911e7943ef3233fe3b7db1bf.tar.gz
spark-8d3cc3de7d116190911e7943ef3233fe3b7db1bf.tar.bz2
spark-8d3cc3de7d116190911e7943ef3233fe3b7db1bf.zip
[SPARK-13050][BUILD] Scalatest tags fail build with the addition of the sketch module
A dependency on the spark test tags was left out of the sketch module pom file causing builds to fail when test tags were used. This dependency is found in the pom file for every other module in spark. Author: Alex Bozarth <ajbozart@us.ibm.com> Closes #10954 from ajbozarth/spark13050.
Diffstat (limited to 'common')
-rw-r--r--common/sketch/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/common/sketch/pom.xml b/common/sketch/pom.xml
index 67723fa421..2cafe8c548 100644
--- a/common/sketch/pom.xml
+++ b/common/sketch/pom.xml
@@ -35,6 +35,13 @@
<sbt.project.name>sketch</sbt.project.name>
</properties>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.spark</groupId>
+ <artifactId>spark-test-tags_${scala.binary.version}</artifactId>
+ </dependency>
+ </dependencies>
+
<build>
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
<testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>