You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ji...@apache.org on 2016/04/21 19:17:10 UTC

[35/50] [abbrv] incubator-geode git commit: Update the version of geode that the spark-connect is built with

Update the version of geode that the spark-connect is built with

The spark connector was pointing at M2-SNAPSHOT instead of M3-SNAPSHOT


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

Branch: refs/heads/feature/GEODE-17-2
Commit: ac27ef54e1fd18f406cb8f40930ab0ac752ab7d1
Parents: 7f306ff
Author: Dan Smith <up...@apache.org>
Authored: Wed Apr 20 12:16:49 2016 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Wed Apr 20 12:18:00 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/ac27ef54/geode-spark-connector/project/Dependencies.scala
----------------------------------------------------------------------
diff --git a/geode-spark-connector/project/Dependencies.scala b/geode-spark-connector/project/Dependencies.scala
index c77c158..4b6682e 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 gemfire = "org.apache.geode" % "geode-core" % "1.0.0-incubating.M2-SNAPSHOT" excludeAll(ExclusionRule(organization = "org.jboss.netty") )
+    val gemfire = "org.apache.geode" % "geode-core" % "1.0.0-incubating.M3-SNAPSHOT" excludeAll(ExclusionRule(organization = "org.jboss.netty") )
   }
 
   object Test {