]
Chao Wang reassigned WFCORE-4234:
---------------------------------
Assignee: Chao Wang (was: Jason Greene)
WARN if jboss-deployment-structure.xml excludes non-existent
dependency
-----------------------------------------------------------------------
Key: WFCORE-4234
URL:
https://issues.jboss.org/browse/WFCORE-4234
Project: WildFly Core
Issue Type: Enhancement
Components: Server
Affects Versions: 6.0.2.Final
Reporter: Brad Maxwell
Assignee: Chao Wang
Priority: Major
WARN if jboss-deployment-structure.xml excludes non-existent dependency
Users can be off by a character or list a dependency that does not exist. A warning
would let them know that their configuration has an issue.
{code}
<?xml version="1.0" encoding="UTF-8" ?>
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.2">
<ear-subdeployments-isolated>false</ear-subdeployments-isolated>
<deployment>
<exclusions>
<module name="non-existent" />
</exclusions>
</deployment>
</jboss-deployment-structure>
{code}