Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using maven in a project here at work and I've come up to a rather strange (at least for me) problem. When I do an: mvn package everything seems ok but the output of mvn disappears as soon as maven completes. To test it more I just did a: mvn --help and I could not see the output. As soon as the command finishes the prompt is cleared. I am doing my work now using redirections: mvn package > out and then: type out in order to see the output. Any help would be greatly appreciated!

Thanx!

Solved: To whoever finds this useful. At the end of mvn.bat there was the line

    cmd /C exit /B %ERROR_CODE%

which I had to comment out like this:

    @REM cmd /C exit /B %ERROR_CODE%
share|improve this question
Is this a fresh installation of Maven? I have win7 64-bit and have had no issues with Maven 2. It might be worth checking your mvn.bat to ensure no-one's been messing with it and put a clear screen command at the end or something. – Phill Sacre Jul 11 '11 at 13:16
2  
You can post your Solution as a answer. – Jacob Jul 11 '11 at 13:24
1  
and accept it as the correct answer – jHackTheRipper Jul 11 '11 at 13:27

1 Answer

up vote 1 down vote accepted

Check if the MAVEN_TERMINATE_CMD is set to on. If it is unset it:

set MAVEN_TERMINATE_CMD=

Check that the mvn.bat script in maven's bin directory doesn't contain an exit command without the /b option. It should end with the following line:

cmd /C exit /B %ERROR_CODE%

If neither alternative solves your problem, set the MAVEN_BATCH_PAUSE variable to on:

set MAVEN_BATCH_PAUSE=on

before you run maven. This should cause mvn.bat to wait for a keystroke before exiting.

share|improve this answer
your last proposal also solves my problem. Thanks! – gpol Jul 14 '11 at 6:38
You're welcome! Note that I'm still puzzled about what the original cause of your problem is. You shouldn't need to do anything special just to be able to see Maven's output! – Nicola Musatti Jul 15 '11 at 10:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.