[ 
https://issues.apache.org/jira/browse/HBASE-9558?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13769536#comment-13769536
 ] 

Nicolas Liochon commented on HBASE-9558:
----------------------------------------

[INFO] org.apache.hbase:hbase-server:jar:0.97.0-SNAPSHOT
[INFO] +- org.apache.hbase:hbase-hadoop2-compat:jar:0.97.0-SNAPSHOT:compile
[INFO] |  \- org.apache.hadoop:hadoop-minicluster:jar:2.1.0-beta:compile
[INFO] |     +- 
org.apache.hadoop:hadoop-common:test-jar:tests:2.1.0-beta:compile
[INFO] |     +- org.apache.hadoop:hadoop-hdfs:test-jar:tests:2.1.0-beta:compile
[INFO] |     |  +- commons-daemon:commons-daemon:jar:1.0.13:compile
[INFO] |     |  \- javax.servlet.jsp:jsp-api:jar:2.1:compile
[INFO] |     +- 
org.apache.hadoop:hadoop-yarn-server-tests:test-jar:tests:2.1.0-beta:compile
[INFO] |     |  \- 
org.apache.hadoop:hadoop-yarn-server-resourcemanager:jar:2.1.0-beta:compile
[INFO] |     \- 
org.apache.hadoop:hadoop-mapreduce-client-hs:jar:2.1.0-beta:compile
[INFO] +- 
org.apache.hbase:hbase-hadoop2-compat:test-jar:tests:0.97.0-SNAPSHOT:test


We can at least remove the dependency to hdfs-test with this modification in 
the pom.xml
          <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-minicluster</artifactId>
            <version>${hadoop-two.version}</version>
            <exclusions>
              <exclusion>
                <!-- We use a newer version of netty -->
                <groupId>org.jboss.netty</groupId>
                <artifactId>netty</artifactId>
              </exclusion>
              <exclusion>
                <groupId>org.apache.hadoop</groupId>
                <artifactId>hadoop-hdfs</artifactId>  
<========================= new
              </exclusion>
            </exclusions>
          </dependency>

                
> PerformanceEvaluation is in hbase-server, and create a dependency to 
> MiniDFSCluster
> -----------------------------------------------------------------------------------
>
>                 Key: HBASE-9558
>                 URL: https://issues.apache.org/jira/browse/HBASE-9558
>             Project: HBase
>          Issue Type: Bug
>    Affects Versions: 0.98.0
>            Reporter: Nicolas Liochon
>            Priority: Minor
>
> It's the only dependency that is not in the tests package.
> I'm not clear on how to fix it. Any idea?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to