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/29 13:09:17 UTC

incubator-s2graph git commit: [S2GRAPH-96]: Remove unmanaged dependencies(asynchbase) and speficy it on build.sbt

Repository: incubator-s2graph
Updated Branches:
  refs/heads/master 1a744b299 -> 0d0ea2ca1


[S2GRAPH-96]: Remove unmanaged dependencies(asynchbase) and speficy it on build.sbt

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

Pull Request:
    Closes #64

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/0d0ea2ca
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/0d0ea2ca
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/0d0ea2ca

Branch: refs/heads/master
Commit: 0d0ea2ca116c6e5594db2e030730ed0c39aabeec
Parents: 1a744b2
Author: DO YUNG YOON <st...@apache.org>
Authored: Mon Aug 29 22:12:44 2016 +0900
Committer: DO YUNG YOON <st...@apache.org>
Committed: Mon Aug 29 22:12:44 2016 +0900

----------------------------------------------------------------------
 CHANGES                                  |   2 ++
 s2core/build.sbt                         |   4 +++-
 s2core/lib/asynchbase-1.7.2-SNAPSHOT.jar | Bin 5594923 -> 0 bytes
 3 files changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/0d0ea2ca/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 0e70dda..a64ace8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -154,6 +154,8 @@ Release 0.12.1 - unreleased
     
     S2GRAPH-98: Make test cases on multiple projects run sequentially (Committed by DOYUNG YOON).
 
+    S2GRAPH-96: Remove unmanaged dependencies(asynchbase) and speficy it on build.sbt. (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/0d0ea2ca/s2core/build.sbt
----------------------------------------------------------------------
diff --git a/s2core/build.sbt b/s2core/build.sbt
index 02e5a0e..4dc1cdb 100644
--- a/s2core/build.sbt
+++ b/s2core/build.sbt
@@ -37,7 +37,9 @@ libraryDependencies ++= Seq(
   "org.scalatest" %% "scalatest" % "2.2.4" % "test",
   "org.scalikejdbc" %% "scalikejdbc" % "2.1.+",
   "com.h2database" % "h2" % "1.4.192",
-  "com.github.danielwegener" % "logback-kafka-appender" % "0.0.4"
+  "com.github.danielwegener" % "logback-kafka-appender" % "0.0.4",
+  "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"
 )
 
 libraryDependencies := {

http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/0d0ea2ca/s2core/lib/asynchbase-1.7.2-SNAPSHOT.jar
----------------------------------------------------------------------
diff --git a/s2core/lib/asynchbase-1.7.2-SNAPSHOT.jar b/s2core/lib/asynchbase-1.7.2-SNAPSHOT.jar
deleted file mode 100644
index ade9f82..0000000
Binary files a/s2core/lib/asynchbase-1.7.2-SNAPSHOT.jar and /dev/null differ