zakvdm
zakvdm

Reputation: 489

How to display progress of Ant build?

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.

Upvotes: 1

Views: 1708

Answers (1)

Thomas Jung
Thomas Jung

Reputation: 33092

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

Upvotes: 4

Related Questions