::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
This is the run file, for use with the Jakarta Ant build tool.
You can call main methods from here. For example:
<target name="foo" >
<java classname="org.example.office.Converter"
fork="yes"
classpathref="test.classpath" />
<sysproperty key="location.home" value="${location.home}" />
</target>
The sysproperty element allows you to pass in properties to java
That's it: just give the target a name and point to the class you want to
run. This way someone else can run your main() code.
This buildfile uses test.classpath path in the bin/import-classpath.xml fragment
Prerequisites:
- JAVA_HOME points to JDK 1.3 or higher in your environment
- ANT_HOME points to ant in your environment
Configuring:
To configure, use the build.properties file ; it will be in the
same directory as this file.
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
you must call a target