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