Skip to content

Commit 7dcda9a

Browse files
committed
Merge pull request #688 from markhamstra/scalaDependencies
Fixed SPARK-795 with explicit dependencies
2 parents 638927b + 0b39d66 commit 7dcda9a

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

core/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,14 @@
5555
<groupId>com.typesafe.akka</groupId>
5656
<artifactId>akka-slf4j</artifactId>
5757
</dependency>
58+
<dependency>
59+
<groupId>org.scala-lang</groupId>
60+
<artifactId>scalap</artifactId>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.scala-lang</groupId>
64+
<artifactId>scala-library</artifactId>
65+
</dependency>
5866
<dependency>
5967
<groupId>net.liftweb</groupId>
6068
<artifactId>lift-json_2.9.2</artifactId>

examples/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
<url>http://spark-project.org/</url>
1616

1717
<dependencies>
18+
<dependency>
19+
<groupId>org.scala-lang</groupId>
20+
<artifactId>scala-library</artifactId>
21+
</dependency>
1822
<dependency>
1923
<groupId>org.eclipse.jetty</groupId>
2024
<artifactId>jetty-server</artifactId>

pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,16 @@
241241
<artifactId>jline</artifactId>
242242
<version>${scala.version}</version>
243243
</dependency>
244+
<dependency>
245+
<groupId>org.scala-lang</groupId>
246+
<artifactId>scala-library</artifactId>
247+
<version>${scala.version}</version>
248+
</dependency>
249+
<dependency>
250+
<groupId>org.scala-lang</groupId>
251+
<artifactId>scalap</artifactId>
252+
<version>${scala.version}</version>
253+
</dependency>
244254

245255
<dependency>
246256
<groupId>log4j</groupId>

streaming/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
<artifactId>twitter4j-stream</artifactId>
5959
<version>3.0.3</version>
6060
</dependency>
61+
<dependency>
62+
<groupId>org.scala-lang</groupId>
63+
<artifactId>scala-library</artifactId>
64+
</dependency>
6165
<dependency>
6266
<groupId>com.typesafe.akka</groupId>
6367
<artifactId>akka-zeromq</artifactId>

0 commit comments

Comments
 (0)