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

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

Introduction

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

Prototype

void forkFailed(ExecutionEvent event);

Source Link

Usage

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

License:Apache License

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

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

License:Open Source License

@Override
public void forkFailed(ExecutionEvent event) {
    for (ExecutionListener listener : listeners) {
        listener.forkFailed(event);
    }//  w w  w. j ava2  s .c  om
}