Failed Build Can be Reported as a Successful One With Maven 2.0.7
This is a known bug in this version of Maven. Consider using any later version.
In case it's not possible you can patch mvn.bat yourself by replacing the fragment at line 148 of mvn.bat:
:error
set ERROR_CODE=1
with the following one:
:error
if "%OS%"=="Windows_NT" @endlocal
set ERROR_CODE=1
Please sign in to leave a comment.