Example usage for org.apache.maven.lifecycle LifecycleExecutor interface-usage

List of usage examples for org.apache.maven.lifecycle LifecycleExecutor interface-usage

Introduction

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

Usage

From source file org.codehaus.tycho.testing.EmptyLifecycleExecutor.java

/**
 * A stub implementation that assumes an empty lifecycle to bypass interaction with the plugin manager and to avoid
 * plugin artifact resolution from repositories.
 * 
 * @author Benjamin Bentmann
 */

From source file org.eclipse.tycho.testing.EmptyLifecycleExecutor.java

public class EmptyLifecycleExecutor implements LifecycleExecutor {

    public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles(String packaging) {
        return null;
    }

From source file org.maven.ide.eclipse.embedder.EclipseLifecycleExecutor.java

public class EclipseLifecycleExecutor extends AbstractLogEnabled implements LifecycleExecutor {

    private PluginManager pluginManager;
    private ExtensionManager extensionManager;
    private List lifecycles;
    private ArtifactHandlerManager artifactHandlerManager;