You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Peter De Maeyer (Jira)" <ji...@apache.org> on 2019/12/25 20:13:00 UTC

[jira] [Updated] (MSHADE-286) Shading fails when a dependency's main artifact does not exist

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

Peter De Maeyer updated MSHADE-286:
-----------------------------------
    Issue Type: Bug  (was: Improvement)

> Shading fails when a dependency's main artifact does not exist
> --------------------------------------------------------------
>
>                 Key: MSHADE-286
>                 URL: https://issues.apache.org/jira/browse/MSHADE-286
>             Project: Maven Shade Plugin
>          Issue Type: Bug
>    Affects Versions: 3.1.0
>            Reporter: Peter De Maeyer
>            Assignee: Mark Struberg
>            Priority: Minor
>
> While looking at {{ShadeMojo.execute}}, I noticed that the artifacts to be included for shading are not consistently checked for existence.
> For example, on line 404, the main artifact file is _not_ checked for existence:
> {code:java}
> artifacts.add( project.getArtifact().getFile() );
> {code}
> But immediately below, the sources artifact file _is_ checked for existence:
> {code:java}
> if ( createSourcesJar )
> {
>     File file = shadedSourcesArtifactFile();
>     if ( file.isFile() )
>     {
>         sourceArtifacts.add( file );
>     }
> }
> {code}
> Apparently, it's a conscious choice to fail when the main artifact does not exist.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)