Details
-
New Feature
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
3.0.2
-
None
-
None
Description
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.