import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; /** @goal hello */ public class HelloMojo extends AbstractMojo { public void execute() throws MojoExecutionException { getLog().info("*** Hello ***"); } }