Changing spark connector to point at latest geode snapshot The spark connector build was trying to build against the M3 snapshot, which no longer exists.
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/c1216eb1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/c1216eb1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/c1216eb1 Branch: refs/heads/feature/GEODE-420 Commit: c1216eb1817df3c6b20afbaff49ba30e76d34b44 Parents: da8b293 Author: Dan Smith <[email protected]> Authored: Thu Sep 8 12:14:16 2016 -0700 Committer: Dan Smith <[email protected]> Committed: Thu Sep 8 12:15:33 2016 -0700 ---------------------------------------------------------------------- geode-spark-connector/project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/c1216eb1/geode-spark-connector/project/Dependencies.scala ---------------------------------------------------------------------- diff --git a/geode-spark-connector/project/Dependencies.scala b/geode-spark-connector/project/Dependencies.scala index 140fdc4..56d0d96 100644 --- a/geode-spark-connector/project/Dependencies.scala +++ b/geode-spark-connector/project/Dependencies.scala @@ -22,7 +22,7 @@ object Dependencies { object Compile { val sparkStreaming = "org.apache.spark" %% "spark-streaming" % "1.3.0" val sparkSql = "org.apache.spark" %% "spark-sql" % "1.3.0" - val geode = "org.apache.geode" % "geode-core" % "1.0.0-incubating.M3-SNAPSHOT" excludeAll(ExclusionRule(organization = "org.jboss.netty") ) + val geode = "org.apache.geode" % "geode-core" % "1.0.0-incubating-SNAPSHOT" excludeAll(ExclusionRule(organization = "org.jboss.netty") ) } object Test {
