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

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

     [ https://issues.apache.org/jira/browse/HBASE-16555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jan Hentschel updated HBASE-16555:
----------------------------------
    Resolution: Duplicate
        Status: Resolved  (was: Patch Available)

Closed in favor for HBASE-12909.

> 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)