I want to save maven output to a file, but without loosing the output to console. Usage of tee is not an option because I run under Windows and also I do not want to add a binary tee.exe to the source tree.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use : > file-name at the end of your mvn command to send output to a file then use something like wintail to tail the file. |
|||
|
|
|
Maven 3 command output can be redirected now. See the below command on window's: mvn -X install > test.log This will redirect the command output to test.log file in the current directory. |
|||
|
|