This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch MNG-6987 in repository https://gitbox.apache.org/repos/asf/maven.git
commit 8b7f6f0c9d15be7b90c4e40bfdd296ce4be01f57 Author: Marc Bruggmann <[email protected]> AuthorDate: Thu Sep 10 15:21:55 2020 +0200 [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 --- maven-model/src/main/mdo/maven.mdo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maven-model/src/main/mdo/maven.mdo b/maven-model/src/main/mdo/maven.mdo index 1f1f9d1..6885641 100644 --- a/maven-model/src/main/mdo/maven.mdo +++ b/maven-model/src/main/mdo/maven.mdo @@ -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>
