com.buschmais.jqassistant.scm.maven.ListPluginsMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqassistant-maven-plugin Show documentation
Show all versions of jqassistant-maven-plugin Show documentation
jQAssistant plugin for Apache Maven to integrate jQAssistant
into a Maven based project.
package com.buschmais.jqassistant.scm.maven;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
/**
* Lists all plugins known based on the current configuration
* to jQAssistant.
*/
@Mojo(name = "list-plugins", threadSafe = true)
public class ListPluginsMojo extends AbstractProjectMojo {
@Override
protected void aggregate(MojoExecutionContext mojoExecutionContext) throws MojoExecutionException {
// Nothing to do here, plugins are listed on startup
}
}