org.jlot.maven.plugin.PullMojo Maven / Gradle / Ivy
package org.jlot.maven.plugin;
import org.apache.maven.plugins.annotations.Mojo;
import org.jlot.client.executor.PullCommandExecutor;
import org.jlot.client.executor.spi.CommandExecutor;
@Mojo(name = "pull", requiresOnline = true, requiresProject = true, inheritByDefault = false, aggregator = true, requiresDirectInvocation = true)
public class PullMojo extends AbstractJlotMojo
{
@Override
protected Class extends CommandExecutor> getCommandExecutorClass ( ) throws Exception
{
return PullCommandExecutor.class;
}
}