Reputation: 103
In module.xml file in Jboss AS 7, I have a dependency
<dependencies>
<module name="org.apache.camel.components" slot="company"/>
</dependencies>
I dont know what does the slot refers in the dependency module.
Kindly guide me
Upvotes: 0
Views: 4901
Reputation: 352
The slot
attribute is for specifying the version of the module you want to include, it defaults to main
when not specified.
For reference, see
Upvotes: 3