How to deploy the teiid console
-------------------------------

1.) Build the teiid console (takes some time)

    mvn clean install

After that the deployable file resides under

    target/teiid-console-resources.jar

Then back to root path of teiid-web-console

    mvn -Pdev clean install

After that the deployable file resides under

    dist/target/teiid-hal-console-*-resources.jar

2.) Copy file to teiid server

Cp teiid-hal-console-*-resources.jar to teiid server

    cp teiid-hal-console-*-resources.jar $TEIID_HOME/build/target/teiid-9.0.0.Beta3-SNAPSHOT/modules/system/layers/dv/org/jboss/as/console/main


3.) Update the module.xml
   
Edit $TEIID_HOME/build/target/teiid-9.0.0.Beta3-SNAPSHOT/modules/system/layers/dv/org/jboss/as/console/main/module.xml

    <module xmlns="urn:jboss:module:1.1" name="org.jboss.as.console" slot="main">

    [...]
        <resources>
            <resource-root path="teiid-hal-console-2.6.2-SNAPSHOT-resources.jar"/>
    	</resources>

    </module>


After restarting thre server you should see the teiid console.


