Skip to content

Commit

Permalink
[SPARK-13050][BUILD] Scalatest tags fail build with the addition of t…
Browse files Browse the repository at this point in the history
…he 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.
  • Loading branch information
ajbozarth authored and liancheng committed Jan 29, 2016
1 parent 721ced2 commit 8d3cc3d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions common/sketch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 8d3cc3d

Please sign in to comment.