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

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

There is a newer version: 1.2
Show newest version
package org.jlot.maven.plugin;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy