Skip to content

Quick Start Guide

Clemens Neudecker edited this page Jul 22, 2013 · 2 revisions
  1. Before going any further, make sure you have
    • a version of the Java JDK > 6 with the JAVA_HOME variable defined (Check: javac -version)
    • a version of Maven > 2.2 (Check: mvn --version)
    • a version of Tomcat > 6.2.6 (or another recent Java servlet container, though you will loose integration of build and deployment)
    • For build integration for Tomcat from Maven make sure you have configured Tomcat's 'tomcat-users.xml' and added entries for the role 'manager' ('manager-gui' in Tomcat7) and a user with a username and password that has the role 'manager' (see here).
  2. To obtain the interoperability-framework software you can either:
  3. Before continuing you may first want to edit and configure some of the following files based on your environment (all other configuration files can also be changed at runtime):
  4. With the configuration done, you can now proceed and run Maven
    • to build and install dependencies into local Maven repository: mvn clean install
    • to build web applications (WAR) for deployment: mvn package
  5. Deploying the web applications
    • Services generated by the toolwrapper can be deployed using: mvn tomcat:deploy -P profile -> where is the deployment profile defined in the toolspec deployments section
    • Or visit to the URL of the Tomcat manager web application to upload the WARs via the manual deployment option

Clone this wiki locally