SwitchYard AS7 Deployment stuff
===============================
1. Extract the contents of build/target/switchyard.deployer.zip to JBoss AS7 root directory
2. Edit standalone.xml or domain.xml according to the configuration used and add the following

<server ...
     urn:jboss:domain:switchyard:1.0 jboss-switchyard.xsd"

    </extensions>
    ...
        <extension module="org.switchyard"/>
    </extensions>

    ...
    <subsystem xmlns="urn:jboss:domain:switchyard:1.0"/>

3. To add a component extract the contents of components/{component}/build/target/switchyard.deployer.zip to JBoss AS7 root directory
4. Add the component modules

        <subsystem xmlns="urn:jboss:domain:switchyard:1.0">
            <modules>
                <module identifier="org.switchyard.component.bean"/>
                <module identifier="org.switchyard.component.soap"/>
                <module identifier="org.switchyard.component.camel"/>
            </modules>
        </subsystem>

5. Deploy m1app
6. Test with soapUI client
