package com.sample; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.project.MavenProject; /** * @phase generate-sources * @goal sample * @requiresDependencyResolution compile * @description Does nothing! */ public class PluginSample extends AbstractMojo { public void execute() throws MojoExecutionException { // nothing } }