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)