[
https://issues.apache.org/jira/browse/S2GRAPH-96?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15445259#comment-15445259
]
ASF GitHub Bot commented on S2GRAPH-96:
---------------------------------------
Github user daewon commented on the issue:
https://github.com/apache/incubator-s2graph/pull/64
After library Dependence order change, it works.
- from last to first.
```
libraryDependencies ++= Seq(
"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",
"ch.qos.logback" % "logback-classic" % "1.1.2",
"com.typesafe" % "config" % "1.2.1",
"com.typesafe.play" %% "play-json" % Common.playVersion,
"com.typesafe.akka" %% "akka-actor" % "2.3.4",
"com.google.guava" % "guava" % "12.0.1" force(), // use this old version
of guava to avoid incompatibility
"org.apache.hbase" % "hbase-client" % Common.hbaseVersion
exclude("org.slf4j", "*"),
"org.apache.hbase" % "hbase-common" % Common.hbaseVersion
exclude("org.slf4j", "*"),
"org.apache.hbase" % "hbase-server" % Common.hbaseVersion
exclude("org.slf4j", "*") exclude("com.google.protobuf", "*"),
"org.apache.hbase" % "hbase-hadoop-compat" % Common.hbaseVersion
exclude("org.slf4j", "*"),
"org.apache.hbase" % "hbase-hadoop2-compat" % Common.hbaseVersion
exclude("org.slf4j", "*"),
"org.apache.kafka" % "kafka-clients" % "0.8.2.0" exclude("org.slf4j",
"*") exclude("com.sun.jdmk", "*") exclude("com.sun.jmx", "*")
exclude("javax.jms", "*"),
"commons-pool" % "commons-pool" % "1.6",
"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"
)
```
> 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)