Ramya
Ramya

Reputation: 103

Slot in module xml in Jboss AS 7

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

Answers (1)

Patrick Roumanoff
Patrick Roumanoff

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

Related Questions