Example usage for org.apache.maven.execution ExecutionListener mojoFailed

List of usage examples for org.apache.maven.execution ExecutionListener mojoFailed

Introduction

In this page you can find the example usage for org.apache.maven.execution ExecutionListener mojoFailed.

Prototype

void mojoFailed(ExecutionEvent event);

Source Link

Usage

From source file:com.wielgolaski.maven.profiling.ExecutionListenerChain.java

License:Apache License

public void mojoFailed(ExecutionEvent event) {
    for (ExecutionListener listener : listeners) {
        listener.mojoFailed(event);
    }
}

From source file:org.eclipse.tycho.core.maven.ChainedExecutionListener.java

License:Open Source License

@Override
public void mojoFailed(ExecutionEvent event) {
    for (ExecutionListener listener : listeners) {
        listener.mojoFailed(event);
    }/*from  w w  w. ja  v a  2 s  . c  o m*/
}