You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by sr...@apache.org on 2016/12/28 12:17:38 UTC

spark git commit: [SPARK-18993][BUILD] Unable to build/compile Spark in IntelliJ due to missing Scala deps in spark-tags

Repository: spark
Updated Branches:
  refs/heads/master 2a5f52a71 -> d7bce3bd3


[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 <so...@cloudera.com>

Closes #16418 from srowen/SPARK-18993.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/d7bce3bd
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/d7bce3bd
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/d7bce3bd

Branch: refs/heads/master
Commit: d7bce3bd31ec193274718042dc017706989d7563
Parents: 2a5f52a
Author: Sean Owen <so...@cloudera.com>
Authored: Wed Dec 28 12:17:33 2016 +0000
Committer: Sean Owen <so...@cloudera.com>
Committed: Wed Dec 28 12:17:33 2016 +0000

----------------------------------------------------------------------
 common/tags/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/d7bce3bd/common/tags/pom.xml
----------------------------------------------------------------------
diff --git a/common/tags/pom.xml b/common/tags/pom.xml
index 09f6fa1..9345dc8 100644
--- a/common/tags/pom.xml
+++ b/common/tags/pom.xml
@@ -34,6 +34,14 @@
     <sbt.project.name>tags</sbt.project.name>
   </properties>
 
+  <dependencies>
+    <dependency>
+      <groupId>org.scala-lang</groupId>
+      <artifactId>scala-library</artifactId>
+      <version>${scala.version}</version>
+    </dependency>
+  </dependencies>
+
   <build>
     <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
     <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org