Repository: mahout Updated Branches: refs/heads/spark-1.2 901ef03b4 -> 71165a54b
added scala dependencies in math-scala to fix spark-shell Project: http://git-wip-us.apache.org/repos/asf/mahout/repo Commit: http://git-wip-us.apache.org/repos/asf/mahout/commit/71165a54 Tree: http://git-wip-us.apache.org/repos/asf/mahout/tree/71165a54 Diff: http://git-wip-us.apache.org/repos/asf/mahout/diff/71165a54 Branch: refs/heads/spark-1.2 Commit: 71165a54b9bc99f23c2cce6e8c63720b7fc64001 Parents: 901ef03 Author: Andrew Palumbo <[email protected]> Authored: Tue Feb 24 17:54:15 2015 -0500 Committer: Andrew Palumbo <[email protected]> Committed: Tue Feb 24 17:54:15 2015 -0500 ---------------------------------------------------------------------- math-scala/pom.xml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mahout/blob/71165a54/math-scala/pom.xml ---------------------------------------------------------------------- diff --git a/math-scala/pom.xml b/math-scala/pom.xml index 9ca1d05..dcf9abe 100644 --- a/math-scala/pom.xml +++ b/math-scala/pom.xml @@ -182,9 +182,29 @@ <!-- scala stuff --> <dependency> <groupId>org.scala-lang</groupId> + <artifactId>scala-compiler</artifactId> + <version>${scala.version}</version> + </dependency> + <dependency> + <groupId>org.scala-lang</groupId> + <artifactId>scala-reflect</artifactId> + <version>${scala.version}</version> + </dependency> + <dependency> + <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>${scala.version}</version> </dependency> + <dependency> + <groupId>org.scala-lang</groupId> + <artifactId>scala-actors</artifactId> + <version>${scala.version}</version> + </dependency> + <dependency> + <groupId>org.scala-lang</groupId> + <artifactId>scalap</artifactId> + <version>${scala.version}</version> + </dependency> <dependency> <groupId>org.scalatest</groupId> @@ -193,5 +213,7 @@ <scope>test</scope> </dependency> + + </dependencies> </project>
