Registering jagtool commands in the Ant build file

Each build file that invokes jagtool commands must include definitions for those commands. This is done by including an Ant taskdef directive for each jagtool command. You can see these directives in the sample build file. For example:

<!-- task definitions -->
<taskdef name="jag_connect" classname="com.sybase.jaguar.management.jagtool.ant.ConnectTask" />
<taskdef name="jag_copy" class="com.sybase.jaguar.management.jagtool.ant.CopyTask" />

Each definition includes the name of the command and the location of the class file it invokes.