Skip to content
Snippets Groups Projects
Commit 7dcda9ae authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Merge pull request #688 from markhamstra/scalaDependencies

Fixed SPARK-795 with explicit dependencies
parents 638927b7 0b39d66f
No related branches found
No related tags found
No related merge requests found
...@@ -55,6 +55,14 @@ ...@@ -55,6 +55,14 @@
<groupId>com.typesafe.akka</groupId> <groupId>com.typesafe.akka</groupId>
<artifactId>akka-slf4j</artifactId> <artifactId>akka-slf4j</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scalap</artifactId>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</dependency>
<dependency> <dependency>
<groupId>net.liftweb</groupId> <groupId>net.liftweb</groupId>
<artifactId>lift-json_2.9.2</artifactId> <artifactId>lift-json_2.9.2</artifactId>
......
...@@ -15,6 +15,10 @@ ...@@ -15,6 +15,10 @@
<url>http://spark-project.org/</url> <url>http://spark-project.org/</url>
<dependencies> <dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.eclipse.jetty</groupId> <groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId> <artifactId>jetty-server</artifactId>
......
...@@ -241,6 +241,16 @@ ...@@ -241,6 +241,16 @@
<artifactId>jline</artifactId> <artifactId>jline</artifactId>
<version>${scala.version}</version> <version>${scala.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scalap</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency> <dependency>
<groupId>log4j</groupId> <groupId>log4j</groupId>
......
...@@ -58,6 +58,10 @@ ...@@ -58,6 +58,10 @@
<artifactId>twitter4j-stream</artifactId> <artifactId>twitter4j-stream</artifactId>
<version>3.0.3</version> <version>3.0.3</version>
</dependency> </dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</dependency>
<dependency> <dependency>
<groupId>com.typesafe.akka</groupId> <groupId>com.typesafe.akka</groupId>
<artifactId>akka-zeromq</artifactId> <artifactId>akka-zeromq</artifactId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment