I cloned MLI, but am unable to compile it. I get the following dependency exception with other projects.
org.apache.spark#spark-core_2.9.3;0.8.0-SNAPSHOT: not found org.apache.spark#spark-mllib_2.9.3;0.8.0-SNAPSHOT: not found Why am I getting this error? I did not change anything from build.sbt libraryDependencies ++= Seq( "org.apache.spark" % "spark-core_2.9.3" % "0.8.0-SNAPSHOT", "org.apache.spark" % "spark-mllib_2.9.3" % "0.8.0-SNAPSHOT", "org.scalatest" %% "scalatest" % "1.9.1" % "test" )
