Skip to content

Commit 3e05d23

Browse files
srowencmonkey
authored andcommitted
[SPARK-18993][BUILD] Unable to build/compile Spark in IntelliJ due to missing Scala deps in spark-tags
## What changes were proposed in this pull request? This adds back a direct dependency on Scala library classes from spark-tags because its Scala annotations need them. ## How was this patch tested? Existing tests Author: Sean Owen <[email protected]> Closes apache#16418 from srowen/SPARK-18993.
1 parent bb8d3df commit 3e05d23

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

common/tags/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
<sbt.project.name>tags</sbt.project.name>
3535
</properties>
3636

37+
<dependencies>
38+
<dependency>
39+
<groupId>org.scala-lang</groupId>
40+
<artifactId>scala-library</artifactId>
41+
<version>${scala.version}</version>
42+
</dependency>
43+
</dependencies>
44+
3745
<build>
3846
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
3947
<testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>

0 commit comments

Comments
 (0)