mirror of https://github.com/apache/maven.git
make exceptions cause a failure response (and exit with a non-zero exit code)
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163079 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
46b377de67
commit
ab2bc483b2
|
@ -43,7 +43,7 @@ public class ExecutionResponse
|
|||
|
||||
public boolean isExecutionFailure()
|
||||
{
|
||||
return ( failedGoal != null );
|
||||
return ( failedGoal != null || exception != null );
|
||||
}
|
||||
|
||||
public String getFailedGoal()
|
||||
|
|
Loading…
Reference in New Issue