You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "HerrDerb (JIRA)" <ji...@apache.org> on 2018/02/28 13:39:00 UTC

[jira] [Created] (MDEP-600) Only defined group Id for unpack goal

HerrDerb created MDEP-600:
-----------------------------

             Summary: Only defined group Id for unpack goal
                 Key: MDEP-600
                 URL: https://issues.apache.org/jira/browse/MDEP-600
             Project: Maven Dependency Plugin
          Issue Type: Improvement
          Components: unpack
    Affects Versions: 3.0.2
            Reporter: HerrDerb


Instead of
{code:java}
 <artifactItems>
    <artifactItem>
        <groupId>com.company.group</groupId>
        <artifactId>projectA</artifactId>
    </artifactItem>
        <artifactItem>
        <groupId>com.company.group</groupId>
        <artifactId>projectB</artifactId>
    </artifactItem>
        <artifactItem>
        <groupId>com.company.group</groupId>
        <artifactId>projectB</artifactId>
    </artifactItem>
        <artifactItem>
        <groupId>com.company.group</groupId>
        <artifactId>projectB</artifactId>
    </artifactItem>
</artifactItems>   {code}
I would like to be able to define
{code:java}
 <artifactGroups>
    <artifactGroup>
        <groupId>com.company.group</groupId>
    </artifactGroup>
</artifactGroups>    {code}
with the goal to only target artifacts with the groupId _com.company.group_ 
defined in my _dependencies._

 

This avoids big lists and double mentioning of artefacts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)