You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Chia-Ping Tsai (JIRA)" <ji...@apache.org> on 2017/04/06 09:36:41 UTC

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

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

Chia-Ping Tsai commented on HBASE-16555:
----------------------------------------

[~Jan Hentschel] Would you please close it as duplicate? Thanks.

> 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
>            Assignee: Jan Hentschel
>         Attachments: HBASE-16555.master.001.patch
>
>
> *Issue*
> JUnit is included as a compile scope dependency. This increases the size of dependent project shaded/Uber JARs unnecessarily.
> *Actual Entry*
> {code:xml}
>       <dependency>
>         <groupId>junit</groupId>
>         <artifactId>junit</artifactId>
>         <version>${junit.version}</version>
>       </dependency>
> {code}
> *Expected Entry*
> {code:xml}
>     <dependency>
>         <groupId>junit</groupId>
>         <artifactId>junit</artifactId>
>         <version>${junit.version}</version>
>         <scope>test</scope>
>     </dependency>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)