Skip to content

Commit 8d3cc3d

Browse files
ajbozarthliancheng
authored andcommitted
[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 <[email protected]> Closes #10954 from ajbozarth/spark13050.
1 parent 721ced2 commit 8d3cc3d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

common/sketch/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@
3535
<sbt.project.name>sketch</sbt.project.name>
3636
</properties>
3737

38+
<dependencies>
39+
<dependency>
40+
<groupId>org.apache.spark</groupId>
41+
<artifactId>spark-test-tags_${scala.binary.version}</artifactId>
42+
</dependency>
43+
</dependencies>
44+
3845
<build>
3946
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
4047
<testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>

0 commit comments

Comments
 (0)