tags:

views:

22

answers:

1

Hi In Ant we have the provision to send the Build details to a log file by specifying the log file as a param while invoking the Ant build like ant -l $BUILDLOG Do we have a similar functionality in Maven ?

A: 

Not in maven 2. But it was added in maven 3 (currently in alpha) in the same form, e.g., mvn -l $BUILDLOG.

yossis