com.atlassian.maven.plugins.refapp.RefappPluginModuleGenerationMojo Maven / Gradle / Ivy
The newest version!
package com.atlassian.maven.plugins.refapp;
import com.atlassian.maven.plugins.amps.PluginModuleGenerationMojo;
import com.atlassian.maven.plugins.amps.product.ProductHandlerFactory;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.ResolutionScope;
/**
* @since 3.6
*/
@Mojo(name = "create-plugin-module", requiresDependencyResolution = ResolutionScope.COMPILE)
public class RefappPluginModuleGenerationMojo extends PluginModuleGenerationMojo{
@Override
protected String getDefaultProductId() throws MojoExecutionException
{
return ProductHandlerFactory.REFAPP;
}
}