com.atlassian.maven.plugins.refapp.RefappStopMojo Maven / Gradle / Ivy
The newest version!
package com.atlassian.maven.plugins.refapp;
import com.atlassian.maven.plugins.amps.StopMojo;
import com.atlassian.maven.plugins.amps.product.ProductHandlerFactory;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
/**
* Run the webapp
*/
@Mojo(name = "stop")
public class RefappStopMojo extends StopMojo
{
@Override
protected String getDefaultProductId() throws MojoExecutionException
{
return ProductHandlerFactory.REFAPP;
}
}