Example usage for org.apache.maven.execution AbstractExecutionListener subclass-usage

List of usage examples for org.apache.maven.execution AbstractExecutionListener subclass-usage

Introduction

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

Usage

From source file com.sumologic.maven.stats.ProfilePublishingExecutionListener.java

/**
 * @author Chris (chris@sumologic.com)
 */
public class ProfilePublishingExecutionListener extends AbstractExecutionListener {
    private final ProfilingPublisher publisher;
    private SessionProfiler sessionProfiler;

From source file com.sumologic.maven.stats.profiler.MojoProfiler.java

/**
 * @author Chris (chris@sumologic.com)
 */
public class MojoProfiler extends AbstractExecutionListener {
    private long startTime;
    private long endTime; // TODO: Make thread safe only if necessary

From source file com.sumologic.maven.stats.profiler.ProjectProfiler.java

/**
 * @author Chris (chris@sumologic.com)
 */
public class ProjectProfiler extends AbstractExecutionListener {
    private long startTime;
    private long endTime; // TODO: Make thread safe only if necessary

From source file com.sumologic.maven.stats.profiler.SessionProfiler.java

/**
 * @author Chris (chris@sumologic.com)
 */
public class SessionProfiler extends AbstractExecutionListener {
    private long startTime;
    private long endTime; // TODO: Make thread safe only if necessary

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

/**
 * Profiles the maven execution by timing the different steps.
 */
public class ProfilingExecutionListener extends AbstractExecutionListener {

    private Logger logger = LoggerFactory.getLogger(ProfilingExecutionListener.class);

From source file hudson.gridmaven.util.ExecutionEventLogger.java

/**
 * Logs execution events to a user-supplied logger.
 *
 * @author Benjamin Bentmann
 */
// Note: copied from package org.apache.maven.cli with just one minor adaption for Maven3MojoNote

From source file hudson.maven.util.ExecutionEventLogger.java

/**
 * Logs execution events to a user-supplied logger.
 *
 * @author Benjamin Bentmann
 */
// Note: copied from package org.apache.maven.cli with just one minor adaption for Maven3Mojo

From source file io.fabric8.vertx.maven.plugin.mojos.MojoSpy.java

/**
 * @author <a href="http://escoffier.me">Clement Escoffier</a>
 */
public class MojoSpy extends AbstractExecutionListener {

    public static final List<MojoExecution> MOJOS = new CopyOnWriteArrayList<>();

From source file io.reactiverse.vertx.maven.plugin.mojos.MojoSpy.java

/**
 * @author <a href="http://escoffier.me">Clement Escoffier</a>
 */
public class MojoSpy extends AbstractExecutionListener {

    static final List<MojoExecution> MOJOS = new CopyOnWriteArrayList<>();

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

public class BuildEventListener extends AbstractExecutionListener {
    private final File mavenTimeline;
    private final File output;
    private final long start;
    private final Map<Execution, Metric> executionMetrics = new ConcurrentHashMap<Execution, Metric>();
    private final Map<Execution, Event> timelineMetrics = new ConcurrentHashMap<Execution, Event>();