You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/01/23 00:45:13 UTC

[2/3] git commit: Also add graphx commons-math3 dependeny in sbt build

Also add graphx commons-math3 dependeny in sbt build


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

Branch: refs/heads/master
Commit: 4476398f7dae1ea87d2b99cb60306cb3c221992f
Parents: fd0c5b8
Author: Sean Owen <so...@cloudera.com>
Authored: Wed Jan 22 22:40:41 2014 +0000
Committer: Sean Owen <so...@cloudera.com>
Committed: Wed Jan 22 22:40:41 2014 +0000

----------------------------------------------------------------------
 project/SparkBuild.scala | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/4476398f/project/SparkBuild.scala
----------------------------------------------------------------------
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 151b1e7..76e3973 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -316,7 +316,10 @@ object SparkBuild extends Build {
   ) ++ assemblySettings ++ extraAssemblySettings
 
   def graphxSettings = sharedSettings ++ Seq(
-    name := "spark-graphx"
+    name := "spark-graphx",
+    libraryDependencies ++= Seq(
+      "org.apache.commons" % "commons-math3" % "3.2"
+    )
   )
 
   def bagelSettings = sharedSettings ++ Seq(