You can find Nightly Builds of the software at: https://builds.apache.org/view/M-R/view/OpenMeetings/

How to Build a Distribution

To build a binary release of OpenMeetings you need:

Get the source:

svn checkout https://svn.apache.org/repos/asf/openmeetings/application/trunk/

Run the command:

mvn clean install -P allModules

Run, Develop, Test

To develop Openmeetings you need to import maven project into Eclipse Import OM into Eclipse

Check for updates

mvn versions:display-dependency-updates
mvn versions:display-plugin-updates
mvn versions:display-property-updates

Check dependencies

mvn org.apache.maven.plugins:maven-dependency-plugin:3.0.0:analyze-only

Tips and Gotchas

To compile only client you can run following command:


mvn install -P allModules -pl openmeetings-flash               # compiles a complete package into the folder openmeetings-flash/target

			

In case you would like to develop Openmeetings you need to run "unpacked" build:


mvn clean install -P unpacked,mysql -DskipTests=true -Dwicket.mode=DEVELOPMENT

			

After modifications are made you can run "quick" build:


mvn install -P allModules,quick,mysql -pl openmeetings-web -pl openmeetings-server -Dwicket.mode=DEVELOPMENT

			

Any number of projects can be specified during build:


mvn install -P allModules,quick,mysql -pl openmeetings-util -pl openmeetings-db -pl openmeetings-core -pl openmeetings-install -pl openmeetings-service -pl openmeetings-web -pl openmeetings-server -pl openmeetings-webservice -Dwicket.mode=DEVELOPMENT

			

Working behind a proxy: If you are sitting behind a proxy you should add some proxy settings before starting the build process.
For SVN Command Line Client (From CollabNet 1.7) see: https://ctf6latest.collab.net/internal-help/index.jsp?topic=/teamforge610/faq/client_proxy_settings.html

Back to top