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

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

Introduction

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

Prototype

void projectStarted(ExecutionEvent event);

Source Link

Usage

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

License:Apache License

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

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

License:Open Source License

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