[
https://issues.apache.org/jira/browse/HBASE-11412?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14249693#comment-14249693
]
Sergey Beryozkin commented on HBASE-11412:
------------------------------------------
Hi Haddo QA,
It does compile for me when I do "mvn clean install" directly in the trunk
(2.0.0-SNAPSHOT)/hbase-client.
I've noticed the results are from the Jenkins build, perhaps there some
differences between running it locally and in Jenkins ?
Re the missing tests: no code changes have been done.
Re the manual test: we have a basic Apache CXF test [1], this is not running in
Jenkins (I did not investigate yet how to run HBase client tests in process)
and as such it is disabled, I only run it manually now and then against a
standalone HBase server. I can look into activating it though it may take me a
bit of time before I can prioritize. However the problem there is that the
exclusions are slightly different [2] and applied above hbase-client pom so it
won't be a 100% match.
Cheers, Sergey
[1]
https://git-wip-us.apache.org/repos/asf?p=cxf.git;a=blob;f=rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/hbase/HBaseVisitorTest.java;h=c0c07ee7f809be99d0997b8f657b6ab917198d62;hb=HEAD
[2]
https://git-wip-us.apache.org/repos/asf?p=cxf.git;a=blob;f=parent/pom.xml;h=37c10546df21a8869161b639bd067408d48510a0;hb=HEAD#l650
> Minimize a number of hbase-client transitive dependencies
> ---------------------------------------------------------
>
> Key: HBASE-11412
> URL: https://issues.apache.org/jira/browse/HBASE-11412
> Project: HBase
> Issue Type: Improvement
> Components: Client
> Affects Versions: 0.98.3
> Reporter: Sergey Beryozkin
> Assignee: Sergey Beryozkin
> Priority: Minor
> Fix For: 1.0.0, 2.0.0
>
> Attachments: hbase11412.txt
>
>
> hbase-client has a number of transitive dependencies not needed for a client
> mode execution. In my test I've added the following exclusions:
> {code:xml}
> <exclusions>
> <exclusion>
> <groupId>com.sun.jersey</groupId>
> <artifactId>jersey-server</artifactId>
> </exclusion>
> <exclusion>
> <groupId>com.sun.jersey</groupId>
> <artifactId>jersey-core</artifactId>
> </exclusion>
> <exclusion>
> <groupId>com.sun.jersey</groupId>
> <artifactId>jersey-json</artifactId>
> </exclusion>
> <exclusion>
> <groupId>com.sun.jersey.contribs</groupId>
> <artifactId>jersey-guice</artifactId>
> </exclusion>
> <exclusion>
> <groupId>com.google.inject</groupId>
> <artifactId>guice</artifactId>
> </exclusion>
> <exclusion>
> <groupId>com.google.inject.extensions</groupId>
> <artifactId>guice-servlet</artifactId>
> </exclusion>
> <exclusion>
> <groupId>org.mortbay.jetty</groupId>
> <artifactId>jetty</artifactId>
> </exclusion>
> <exclusion>
> <groupId>org.mortbay.jetty</groupId>
> <artifactId>jetty-util</artifactId>
> </exclusion>
> <exclusion>
> <groupId>commons-httpclient</groupId>
> <artifactId>commons-httpclient</artifactId>
> </exclusion>
> </exclusions>
> {code}
> Proposal: add related exclusions to some of the dependencies hbase-client
> depends upon.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)