You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Aaron Curley (Jira)" <ji...@apache.org> on 2023/04/05 20:29:00 UTC

[jira] [Commented] (MSHADE-203) "shadeTestJar" option not working?

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

Aaron Curley commented on MSHADE-203:
-------------------------------------

Probably this should be closed?  I still think there might be problems with the behavior of <shadeTestJar> but as of more recent maven-shade-plugin versions it's certainly not a no-op anymore which is what this ticket was reporting.

> "shadeTestJar" option not working?
> ----------------------------------
>
>                 Key: MSHADE-203
>                 URL: https://issues.apache.org/jira/browse/MSHADE-203
>             Project: Maven Shade Plugin
>          Issue Type: Bug
>    Affects Versions: 2.4.1
>            Reporter: Aaron Curley
>            Priority: Minor
>
> So, I'm pretty new to using the maven-shade-plugin and I'm not really that familiar with the maven-shade-plugin's design/code; however, it appears that the <shadeTestJar> option in the maven-shade-plugin configuration does not work correctly.  
> __Symtoms__
> While running "mvn package" in my project (which has <shadeTestJar> set to true), maven-shade-plugin appears to perform the "test jar shading" step (after performing the regular jar's shade), but the "shaded" test JAR doesn't actually include any shaded dependency files (it just includes the "original" test jar's contents, which is essentially a "no-op").
> __Possible Diagnosis__
> I took a quick look at the release code base for v2.4.1, in particularly, the mojo/ShadeMojo.java file.  In the execute() method, at line 437, there is method call:
> processArtifactSelectors( artifacts, artifactIds, sourceArtifacts, artifactSelector );
> This method call appears to populate the "artifacts" and "sourceArtifacts" sets created earlier in execute() but the code noticeably does not populate the similar "testArtifacts" set.  My guess is that this is causing the "shade" operation to skip processing any artifacts for the test jar shade operation (since only the project-level artifact is populated in the "testArtifacts" set at line 432).
> __Possible Solution__
> (Obviously) Add an additional parameter to processArtifactSelectors() that accepts the additional "testArtifacts" set.  Then, processArtifactSelectors could populate that set (much like it does for the "sourceArtifacts" set at line 623).  A more extensible design might be to populate a list of Set's and supply that to processArtifactSelectors(), but there are some other difficulties with that (under the current design).
> Best wishes.  Like I said, I'm pretty new to this plugin, so the above may be incorrect.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)