[
https://issues.jboss.org/browse/WFLY-10571?page=com.atlassian.jira.plugin...
]
Kabir Khan updated WFLY-10571:
------------------------------
Description:
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.
{code}
<exclusion>
<artifactId>hal-ballroom</artifactId>
<groupId>org.jboss.hal</groupId>
</exclusion>
{code}
should be
{code}
<exclusion>
<groupId>org.jboss.hal</groupId>
<artifactId>hal-ballroom</artifactId>
</exclusion>
{code}
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)
was:
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.
{code}
<exclusion>
<artifactId>hal-ballroom</artifactId>
<groupId>org.jboss.hal</groupId>
</exclusion>
{code}
should be
{code}
<exclusion>
<groupId>org.jboss.hal</groupId>
<artifactId>hal-ballroom</artifactId>
</exclusion>
{code}
While the former is valid, it is confusing
groupId and artifactId is in the wrong order in the root pom
------------------------------------------------------------
Key: WFLY-10571
URL:
https://issues.jboss.org/browse/WFLY-10571
Project: WildFly
Issue Type: Feature Request
Components: Build System
Affects Versions: 13.0.0.Final
Reporter: Kabir Khan
Assignee: Kabir Khan
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.
{code}
<exclusion>
<artifactId>hal-ballroom</artifactId>
<groupId>org.jboss.hal</groupId>
</exclusion>
{code}
should be
{code}
<exclusion>
<groupId>org.jboss.hal</groupId>
<artifactId>hal-ballroom</artifactId>
</exclusion>
{code}
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)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)