OverviewTwo build environments are available for OpenJMS, one based on Ant , the other on Maven The Ant build is simple and self-contained, but does not enable install archives or documentation to be built. The Maven build requires Maven to be installed. Maven 1.0 rc1 or higher must be used. Building OpenJMS using AntTo build OpenJMS using Ant: Windows > cd %OPENJMS_HOME% > build.bat <target> Unix > cd $OPENJMS_HOME > build.sh <target> Where target may be:
For a list of the available targets, invoke the build script with the -projecthelp argument. Building OpenJMS using MavenTo build OpenJMS using Maven: Windows > cd %OPENJMS_HOME% > maven.bat <goal> Unix > cd $OPENJMS_HOME > maven <goal> Where goal may be:
DocumentationThe Maven build environment is responsible for producing the OpenJMS documentation. All of the documentation is in xdoc format, and is transformed to HTML using the xdoc plugin The OpenJMS documentation can be found in the src/xdocs directory in the CVS repository and source distribution. |