You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Robert G Duncan (JIRA)" <ji...@apache.org> on 2016/09/03 00:45:20 UTC

[jira] [Created] (HBASE-16555) JUnit dependency not scoped as test

Robert G Duncan created HBASE-16555:
---------------------------------------

             Summary: JUnit dependency not scoped as test
                 Key: HBASE-16555
                 URL: https://issues.apache.org/jira/browse/HBASE-16555
             Project: HBase
          Issue Type: Bug
          Components: build
    Affects Versions: 1.2.2
            Reporter: Robert G Duncan


*Issue*
JUnit is included as a compile scope dependency. This increases the size of dependent project shaded/Uber JARs unnecessarily.

*Actual Entry*
{{
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>${junit.version}</version>
      </dependency>
}}

*Expected Entry*

{{
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>${junit.version}</version>
        <scope>test</scope>
    </dependency>
}}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)