ActiveVOS Designer User’s Guide
When you create a .bpr file, as described in Creating a Business Process Archive File, you have the option to create an Ant script (a .bprd file). You can execute this file within Designer or on the command line.
To execute the BPRD Ant script from the command line, you must set up your Ant environment and install the Ant Runtime component of ActiveVOS Designer. For details on installing the Ant Runtime, see ActiveVOS Designer Components.
To set up Ant, you must make files available to your Ant environment. Choose one of the following methods.
Ensure that the following files are in your {$ant.home}\lib directory
Change the following lines:
<taskdef name="validatebpr" classname="com.activee.ant.bpr.tasks.AeValidateBPRTask" />
<taskdef name="deploybpr" classname="com.activee.ant.bpr.tasks.AeDeployBPRTask" />
<taskdef name="createcatalog" classname="com.activee.ant.bpr.tasks.AeCreateCatalogTask" />
to this:
<path id="bprd.classpath">
<fileset dir="--FILL IN PATH TO BUNIT RUNTIME HERE--">
<include name="*.jar"/>
</fileset>
</path>
<taskdef name="validatebpr" classpathref="bprd.classpath" classname="com.activee.ant.bpr.tasks.AeValidateBPRTask" />
<taskdef name="deploybpr" classpathref=" bprd.classpath" classname="com.activee.ant.bpr.tasks.AeDeployBPRTask" />
<taskdef name="createcatalog" classpathref="bprd.classpath" classname="com.activee.ant.bpr.tasks.AeCreateCatalogTask" />
For details on the B-Unit Runtime, see ActiveVOS Designer Components.
Copyright (c) 2004-2010 Active Endpoints, Inc.