maven-dependency-plugin
maven-dependency-plugin copied to clipboard
[MDEP-600] Only defined group Id for unpack goal
HerrDerb opened MDEP-600 and commented
Instead of
<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>
I would like to be able to define
<artifactGroups>
<artifactGroup>
<groupId>com.company.group</groupId>
</artifactGroup>
</artifactGroups>
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.
Affects: 3.0.2