You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@s2graph.apache.org by st...@apache.org on 2016/08/31 16:51:20 UTC

incubator-s2graph git commit: [S2GRAPH-103]: Remove dependencies on custom fork of asynchbase.

Repository: incubator-s2graph
Updated Branches:
  refs/heads/master c44fec0f3 -> 8dfb829c1


[S2GRAPH-103]: Remove dependencies on custom fork of asynchbase.

JIRA:
    [S2GRAPH-103] https://issues.apache.org/jira/browse/S2GRAPH-103

Pull Request:
    Closes #74

Authors:
    DO YUNG YOON: steamshon@apache.org


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

Branch: refs/heads/master
Commit: 8dfb829c125d6df22fe5c81843b8a23e0171e538
Parents: c44fec0
Author: DO YUNG YOON <st...@apache.org>
Authored: Thu Sep 1 01:55:11 2016 +0900
Committer: DO YUNG YOON <st...@apache.org>
Committed: Thu Sep 1 01:55:11 2016 +0900

----------------------------------------------------------------------
 CHANGES          | 2 ++
 s2core/build.sbt | 3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/8dfb829c/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index c0a0e57..f6fa782 100644
--- a/CHANGES
+++ b/CHANGES
@@ -166,6 +166,8 @@ Release 0.12.1 - unreleased
 
     S2GRAPH-100: Add BUILD.md to explain how to package from source, then add it into REAME.md (Committed by DOYUNG YOON).
 
+    S2GRAPH-103: Remove dependencies on custom fork of asynchbase (Committed by DOYUNG YOON).
+
   TEST
     
     S2GRAPH-21: Change PostProcessBenchmarkSpec not to store and fetch test data from storage. (Committed by DOYUNG YOON).

http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/8dfb829c/s2core/build.sbt
----------------------------------------------------------------------
diff --git a/s2core/build.sbt b/s2core/build.sbt
index 4dc1cdb..d8e510c 100644
--- a/s2core/build.sbt
+++ b/s2core/build.sbt
@@ -38,8 +38,9 @@ libraryDependencies ++= Seq(
   "org.scalikejdbc" %% "scalikejdbc" % "2.1.+",
   "com.h2database" % "h2" % "1.4.192",
   "com.github.danielwegener" % "logback-kafka-appender" % "0.0.4",
+  "com.stumbleupon" % "async" % "1.4.1",
   "io.netty" % "netty" % "3.9.4.Final" force(),
-  "org.hbase" % "asynchbase" % "1.7.2-S2GRAPH" from "https://github.com/SteamShon/asynchbase/raw/mvn-repo/org/hbase/asynchbase/1.7.2-S2GRAPH/asynchbase-1.7.2-S2GRAPH-jar-with-dependencies.jar"
+  "org.hbase" % "asynchbase" % "1.7.2-S2GRAPH" from "https://github.com/SteamShon/asynchbase/raw/mvn-repo/org/hbase/asynchbase/1.7.2-S2GRAPH/asynchbase-1.7.2-S2GRAPH.jar"
 )
 
 libraryDependencies := {