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 t
tee
Maven 3 command output can be redirected now. See the below command on windows:
mvn -X install > test.log
This will redirect the command output to test.log file ,located in the current directory.