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

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

Introduction

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

Prototype

void mojoStarted(ExecutionEvent event);

Source Link

Usage

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

License:Apache License

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

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

License:Open Source License

@Override
public void mojoStarted(ExecutionEvent event) {
    for (ExecutionListener listener : listeners) {
        listener.mojoStarted(event);
    }//from  ww  w  .  j a va2s  . c om
}