Skip to content
Snippets Groups Projects
Commit fd0c5b8c authored by Sean Owen's avatar Sean Owen
Browse files

Depend on Commons Math explicitly instead of accidentally getting it from...

Depend on Commons Math explicitly instead of accidentally getting it from Hadoop (which stops working in 2.2.x) and also use the newer commons-math3
parent 749f8428
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,11 @@ ...@@ -37,6 +37,11 @@
<artifactId>spark-core_${scala.binary.version}</artifactId> <artifactId>spark-core_${scala.binary.version}</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.2</version>
</dependency>
<dependency> <dependency>
<groupId>org.eclipse.jetty</groupId> <groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId> <artifactId>jetty-server</artifactId>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
package org.apache.spark.graphx.lib package org.apache.spark.graphx.lib
import scala.util.Random import scala.util.Random
import org.apache.commons.math.linear._ import org.apache.commons.math3.linear._
import org.apache.spark.rdd._ import org.apache.spark.rdd._
import org.apache.spark.graphx._ import org.apache.spark.graphx._
......
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