Installation
After downloading the package, unzip it into a specific folder on your hard disk. Let's call this folder AntForm_home for what follows.
In your Ant build file, create taskdef (task definitions)
with a classpath referring to your ${antForm_home}/lib/AntForm.jar file, unless this file is copied into the
base ${ant_home}/lib folder of your Ant distribution, in which case it doesn't need to be referenced through the
taskdef classpath attribute. The task definitions should look like this:
<taskdef name="antform" classname="com.sardak.antform.AntForm"
classpath="${antform.home}/lib/antform.jar"/>
<taskdef name="antmenu" classname="com.sardak.antform.AntMenu"
classpath="${antform.home}/lib/antform.jar"/>
You can also use the provided taskdefs.properties:
<taskdef resource="com/sardak/antform/taskdefs.properties"
classpath="${antform.home}/lib/antform.jar"/>
You're ready to use the freshly-defined tasks in other ant targets. See AntForm and AntMenu for more information on the specificities if the antform and antmenu tasks.
Samples
There's a sample and build file named test.xml in the root folder. If your
ant_home and path environment variables are correctly
set, you should be able to test the samples with the following command:
ant -f test.xml test testmenu testne spinners password wizard1
Use ant -f test.xml -p to see a list of other tests. These tests
use other properties or behavioural characteristics and will show you more of
what AntForm/AntMenu can do. |