JavaTM Adventure Builder Refernce application - Version 1.0.1 > Building the Demo
Java BluePrints

Asant and Ant

We use script asant, which is located in the J2EE 1.4 SDK bin directory, to build the source code of this application. asant is a wrapper around Ant which is a Java-based build tool like make, which has been developed under the auspices of the Apache Software Foundation. Ant version 1.5.3 and 1.6 beta 1 may also be used to build and deploy the applications.


Note: The JavaTM Adventure Builder Reference application bundle comes with pre-built binaries. To deploy these binaries and avoid building the application, consult the installation instructions.


Build Adventure Builder Reference application v1.0.1

This section explains how to build the application binaries for the JavaTM Adventure Builder Reference application. Building all the application binaries and performing other tasks with Ant involves invoking asant from <adventure.home>/project directory of the demo installation.

To build the application binaries on Unix, open a shell prompt and enter these commands:

cd <adventure.home>/project
asant [argument]
To build the application binaries on Windows, open a shell prompt and enter these commands:
cd <adventure.home>\project
asant [argument]
For the above command to work, your PATH environment variable must have been set as explained in the installation instructions and the ANT_HOME environment variable, if any, should not point to any other version of ant that migh be on your system. When asant is invoked without any arguments, all the application binaries are built. The binaries are placed in the following folders:
<adventure.home>/project/apps/consumerwebsite/build/consumerwebsite.ear
<adventure.home>/project/apps/opc/build/opc.ear
<adventure.home>/project/apps/bank/build/bank.ear
<adventure.home>/project/apps/activitysupplier/build/activitysupplier.ear
<adventure.home>/project/apps/airlinesupplier/build/airlinesupplier.ear
<adventure.home>/project/apps/lodgingsupplier/build/lodgingsupplier.ear

The following table lists possible arguments when invoking asant :

Option Purpose
core Builds everything. (This is the default build target.)
cleanall Cleans out the build output directories.
deploy Deploys the application binaries.

Copyright © 2004 Sun Microsystems, Inc. All Rights Reserved.