*/
public void doTag(final XMLOutput output) throws Exception {
log.debug("doTag(..):" + name);
Goal goal = getProject().getGoal( getName(),
true );
goal.setDescription( this.description );
addPrereqs( goal );
Action action = new DefaultAction() {
public void performAction() throws Exception {
log.debug("Running action of target: " + getName() );
invokeBody(output);
}
};
goal.setAction( action );
}