This is a build script to generate a zip file containing a standalone CMIS dsistribution with no external dependencies. Prerequisites: checked-out latest sources from Apache subversion https://svn.apache.org/repos/asf/chemistry/opencmis/trunk/ Run mvn install cd chemistry-opencmis-workbench\chemistry-opencmis-workbench-webstart mvn package For the Javascript client get sources from subversion https://svn.apache.org/repos/asf/chemistry/playground/chemistry-opencmis-javascript-client use the following structure to create a source tree --- build.xml +--- zipsrc +--- apache-tomcat-6.0.20 // copy an expanded Tomcat distribution package here +--- jdk1.6.0_30 // copy a Java JDK here ... You can tweak other files in the zipsrc directory according to your needs (web.xml, repository.properties etc.) Run one of following commands: ant buildzip-jsclient // creates a zip file containing InMemory server and Javascript client ant buildzip-publicserver // creates a zip file containing InMemory (with public server settings, // browser client and CMIS Workbench as Java webstart ant buildall // creates a zip file containing all of the above ant clean // remove all generated files Ouput is a file cmisdemo.zip that you can unzip to an arbitary location. You can run a batch file _start.bat from there and open a browser with the page http://localhost:8080 Note: If version numbers change please adjust properies in build.xml AND _start.bat