Repository: spark
Updated Branches:
  refs/heads/branch-2.1 ac7107fe7 -> 7197a7bc7


[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.

(cherry picked from commit d7bce3bd31ec193274718042dc017706989d7563)
Signed-off-by: Sean Owen <so...@cloudera.com>


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

Branch: refs/heads/branch-2.1
Commit: 7197a7bc7061e2908b6430f494dba378378d5d02
Parents: ac7107f
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:41 2016 +0000

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


http://git-wip-us.apache.org/repos/asf/spark/blob/7197a7bc/common/tags/pom.xml
----------------------------------------------------------------------
diff --git a/common/tags/pom.xml b/common/tags/pom.xml
index 0778ee3..ad29848 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-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to