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

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

Introduction

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

Prototype

void sessionStarted(ExecutionEvent event);

Source Link

Usage

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

License:Apache License

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

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

License:Open Source License

@Override
public void sessionStarted(ExecutionEvent event) {
    for (ExecutionListener listener : listeners) {
        listener.sessionStarted(event);
    }// w  ww .j  a  va  2s .  c o  m
}