tags:

views:

60

answers:

1

When running an Ant script with the -logfile logFile option, is it possible to still print out some very basic progress information? I would be delighted even with something as basic as printing '.' to standard out for every new target hit.

I've found the splash ant task which seems to be along the right lines, only I'm looking for something that's not graphical.

+2  A: 

It should be quite easy to implement this with an Ant build listener.

Thomas Jung
This looks like exactly what I need. Thanks!
zakvdm