-
Task
-
Resolution: Done
-
Trivial
-
5.0.0.Final
-
None
e.g. in https://github.com/wildfly/wildfly/blob/13.0.0.Final/pom.xml#L4198 the exclusions have groupId and artifactId in the wrong order. e.g.
<exclusion> <artifactId>hal-ballroom</artifactId> <groupId>org.jboss.hal</groupId> </exclusion>
should be
<exclusion> <groupId>org.jboss.hal</groupId> <artifactId>hal-ballroom</artifactId> </exclusion>
While the former is valid, it is confusing, and seems to have been introduced in the refactoring to use the component-matrix (which was later undone)
- clones
-
WFLY-10571 Exclusion groupId and artifactId in the wrong order in the root pom
- Closed