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

com.lotaris.maven.plugin.glassfish.StartDomainGlassfishMojo Maven / Gradle / Ivy

package com.lotaris.maven.plugin.glassfish;

import com.lotaris.maven.plugin.glassfish.macro.AbstractMacro;
import com.lotaris.maven.plugin.glassfish.macro.StartDomainMacro;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;

/**
 * Maven goal to start a glassfish domain
 * 
 * @author Laurent Prevost, [email protected]
 */
@Mojo(name = "start-domain", defaultPhase = LifecyclePhase.PRE_INTEGRATION_TEST, requiresProject = true)
public class StartDomainGlassfishMojo extends GlassfishMojo {
	@Override
	public AbstractMacro getMacro() {
		return new StartDomainMacro(configuration);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy