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

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

Introduction

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

Prototype

void forkStarted(ExecutionEvent event);

Source Link

Usage

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

License:Apache License

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

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

License:Open Source License

@Override
public void forkStarted(ExecutionEvent event) {
    for (ExecutionListener listener : listeners) {
        listener.forkStarted(event);
    }//from  w  ww.  jav  a  2 s .co  m
}