[MNG-6987] Reorder groupId before artifactId when writing an exclusion using maven-model

In most other places, we order the groupId before the artefactId.
Exclusion was the odd one out, so I changed it to be in line with
the others.

This closes #375
This commit is contained in:
Marc Bruggmann 2020-09-10 15:21:55 +02:00 committed by Michael Osipov
parent 2a23d7bf16
commit 8b7f6f0c9d
1 changed files with 4 additions and 4 deletions

View File

@ -1191,16 +1191,16 @@
</description>
<fields>
<field>
<name>artifactId</name>
<name>groupId</name>
<version>4.0.0+</version>
<description>The artifact ID of the project to exclude.</description>
<description>The group ID of the project to exclude.</description>
<type>String</type>
<required>true</required>
</field>
<field>
<name>groupId</name>
<name>artifactId</name>
<version>4.0.0+</version>
<description>The group ID of the project to exclude.</description>
<description>The artifact ID of the project to exclude.</description>
<type>String</type>
<required>true</required>
</field>