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/09/01 14:43:12 UTC

incubator-s2graph git commit: [S2GRAPH-104]: force scalaz-stream, netty-http-pipelining dependencies version which is available on maven central.

Repository: incubator-s2graph
Updated Branches:
  refs/heads/master c2f3fc21b -> a6e68a72c


[S2GRAPH-104]: force scalaz-stream, netty-http-pipelining dependencies version which is available on maven central.

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

Pull Request:
    Closes #76

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

Branch: refs/heads/master
Commit: a6e68a72cd65f55db0e4ba79ace8af8d562e7153
Parents: c2f3fc2
Author: DO YUNG YOON <st...@apache.org>
Authored: Thu Sep 1 23:25:55 2016 +0900
Committer: DO YUNG YOON <st...@apache.org>
Committed: Thu Sep 1 23:25:55 2016 +0900

----------------------------------------------------------------------
 CHANGES   | 2 ++
 build.sbt | 4 ++++
 2 files changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/a6e68a72/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 7fd4600..084a2d6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -177,6 +177,8 @@ Release 0.12.1 - unreleased
     
     S2GRAPH-84: Test-case compilation error on `s2counter_loader` project (Committed by Jaesang Kim).
 
+    S2GRAPH-104: force scalaz-stream, netty-http-pipelining dependencies version which is available on maven central (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/a6e68a72/build.sbt
----------------------------------------------------------------------
diff --git a/build.sbt b/build.sbt
index 94be364..7a2511d 100755
--- a/build.sbt
+++ b/build.sbt
@@ -31,6 +31,10 @@ lazy val commonSettings = Seq(
   testOptions in Test += Tests.Argument("-oDF"),
   concurrentRestrictions in Global += Tags.limit(Tags.Test, 1),
   parallelExecution in Test := false,
+  libraryDependencies ++= Seq(
+    "org.scalaz.stream" % "scalaz-stream_2.11" % "0.7.2",
+    "com.typesafe.netty" % "netty-http-pipelining" % "1.1.4"
+  ),
   resolvers ++= Seq(
     Resolver.mavenLocal
   )