com.atlassian.maven.plugins.refapp.RefappCreateMojo Maven / Gradle / Ivy
The newest version!
package com.atlassian.maven.plugins.refapp;
import com.atlassian.maven.plugins.amps.CreateMojo;
import com.atlassian.maven.plugins.amps.product.ProductHandlerFactory;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
/**
* Creates a new plugin
*/
@Mojo(name = "create", requiresProject = false)
public class RefappCreateMojo extends CreateMojo
{
@Override
protected String getDefaultProductId() throws MojoExecutionException
{
return ProductHandlerFactory.REFAPP;
}
}