com.atlassian.maven.plugins.refapp.RefappTestInstallMojo Maven / Gradle / Ivy
The newest version!
package com.atlassian.maven.plugins.refapp;
import com.atlassian.maven.plugins.amps.pdk.TestInstallMojo;
import com.atlassian.maven.plugins.amps.product.ProductHandlerFactory;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
@Mojo(name = "test-install")
public class RefappTestInstallMojo extends TestInstallMojo
{
@Override
protected String getDefaultProductId() throws MojoExecutionException
{
return ProductHandlerFactory.REFAPP;
}
}