All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jlot.maven.plugin.DeleteMojo Maven / Gradle / Ivy

package org.jlot.maven.plugin;

import org.apache.maven.plugins.annotations.Mojo;
import org.jlot.client.executor.DeleteCommandExecutor;
import org.jlot.client.executor.spi.CommandExecutor;

/**
 * Initializes the project to use a jlot server instance for translating java
 * properties
 */

@Mojo(name = "delete", requiresOnline = true, requiresProject = true, inheritByDefault = false, aggregator = true, requiresDirectInvocation = true)
public class DeleteMojo extends AbstractJlotMojo
{
	@Override
	protected Class getCommandExecutorClass ( ) throws Exception
	{
		return DeleteCommandExecutor.class;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy