On Sat, Mar 9, 2013 at 5:43 AM, Stefan Bodewig <bode...@apache.org> wrote:
> On 2013-03-07, Erik Smith wrote: > > > Hi ant developers. I'm working on an extension for better C++ support > and > > I'm wondering if there is any kind of hook that can get executed after > > targets are executed but earlier than buildFinished, which generates the > > "BUILD SUCCESSFUL" output. > > targetFinished is invoked for each target. The last target invoked in > general will be one of the targets specified on the command line (or by > whatever means Ant was started) and thus is part of the list available > via ${ant.project.invoked-targets}. > > Stefan > Thanks Stefan - that property solves the problem. erik