-
Feature Request
-
Resolution: Done
-
Major
-
7.1.3.Final (EAP)
-
None
If you execute a CLI module command with the --slot option and you allow CLI to auto-generate the module.xml file, it leaves the "slot" attribute out of the generated XML.
module add --name=foo --slot=bar --resources=my.jar
Currently generates:
<?xml version="1.0" ?> <module xmlns="urn:jboss:module:1.1" name="foo"> <resources> <resource-root path="my.jar"/> </resources> </module>
Should be
<?xml version="1.0" ?> <module xmlns="urn:jboss:module:1.1" name="foo" slot="bar"> <resources> <resource-root path="my.jar"/> </resources> </module>