mirror of https://github.com/apache/maven.git
[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:
parent
2a23d7bf16
commit
8b7f6f0c9d
|
@ -1191,16 +1191,16 @@
|
||||||
</description>
|
</description>
|
||||||
<fields>
|
<fields>
|
||||||
<field>
|
<field>
|
||||||
<name>artifactId</name>
|
<name>groupId</name>
|
||||||
<version>4.0.0+</version>
|
<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>
|
<type>String</type>
|
||||||
<required>true</required>
|
<required>true</required>
|
||||||
</field>
|
</field>
|
||||||
<field>
|
<field>
|
||||||
<name>groupId</name>
|
<name>artifactId</name>
|
||||||
<version>4.0.0+</version>
|
<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>
|
<type>String</type>
|
||||||
<required>true</required>
|
<required>true</required>
|
||||||
</field>
|
</field>
|
||||||
|
|
Loading…
Reference in New Issue