[
https://issues.apache.org/jira/browse/S2GRAPH-96?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15445770#comment-15445770
]
ASF GitHub Bot commented on S2GRAPH-96:
---------------------------------------
Github user SteamShon commented on the issue:
https://github.com/apache/incubator-s2graph/pull/64
@daewon Thanks for the report. It help me to narrow down the cause of this
problem.
I think io.netty version is conflicting here since asynchbase require netty
version `3.9.4.Final`, and hbase-client + hbase-server are using
`4.0.23.Final`.
I added below line to make sure asynchbase to use right version.
```
"io.netty" % "netty" % "3.9.4.Final" force()
```
After this is prepend in-front of asynchbase, I can finally get all success
on every test cases.
Please git pull this and tell me what you think!
> Remove unmanaged dependencies(asynchbase) and speficy it on build.sbt
> ---------------------------------------------------------------------
>
> Key: S2GRAPH-96
> URL: https://issues.apache.org/jira/browse/S2GRAPH-96
> Project: S2Graph
> Issue Type: Sub-task
> Affects Versions: 0.1.0
> Reporter: DOYUNG YOON
> Assignee: DOYUNG YOON
> Priority: Blocker
> Fix For: 0.1.0
>
> Original Estimate: 168h
> Remaining Estimate: 168h
>
> Currently there is asynchbase jar in s2core/lib folder. for source release, I
> think we can't include any binary in our source release package, so I am
> suggesting remove jar file in project.
> Alternately we can specify as following on our build.sbt.
> {noformat}
> "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"
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)