Example usage for org.apache.maven.execution ExecutionListener interface-usage

List of usage examples for org.apache.maven.execution ExecutionListener interface-usage

Introduction

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

Usage

From source file com.github.htfv.maven.plugins.buildconfigurator.core.DelegatingExecutionListener.java

/**
 * {@link ExecutionListener} which delegates all calls to another object.
 *
 * @author htfv (Aliaksei Lahachou)
 */
public class DelegatingExecutionListener implements ExecutionListener {

From source file com.sumologic.maven.ChainedExecutionListener.java

/**
 * Chains multiple execution listeners together
 *
 * @author Chris (chris@sumologic.com)
 */
public class ChainedExecutionListener implements ExecutionListener {

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

/**
 * ExecutionListener that passes the events on to multiple listeners.
 */
public class ExecutionListenerChain implements ExecutionListener {

    private List<ExecutionListener> listeners = new ArrayList<ExecutionListener>();

From source file io.takari.maven.timeline.buildevents.ExecutionListenerChain.java

public class ExecutionListenerChain implements ExecutionListener {
    private final ExecutionListener first;
    private final ExecutionListener second;

    public ExecutionListenerChain(ExecutionListener first, ExecutionListener second) {
        this.first = first;

From source file net.gageot.maven.buildevents.ExecutionListenerChain.java

public class ExecutionListenerChain implements ExecutionListener {
    private final ExecutionListener first;
    private final ExecutionListener second;

    public ExecutionListenerChain(ExecutionListener first, ExecutionListener second) {
        this.first = first;

From source file net.oneandone.maven.plugins.prerelease.core.BaseExecutionListener.java

public class BaseExecutionListener implements ExecutionListener {
    private final ExecutionListener base;

    public BaseExecutionListener(ExecutionListener base) {
        this.base = base;
    }

From source file org.commonjava.emb.boot.log.EventLogger.java

public class EventLogger implements ExecutionListener {
    private final Logger logger;

    private static final int LINE_LENGTH = 72;

    public EventLogger(final Logger logger) {

From source file org.sourcepit.common.maven.testing.ChainedExecutionListener.java

/**
 * @author Bernd Vogt <bernd.vogt@sourcepit.org>
 */
public class ChainedExecutionListener implements ExecutionListener {
    private final ExecutionListener next;