blob: 447e4ba9ba9137cb7e0b681395ad6181d59df0c2 [file] [log] [blame]
package tests;
import org.apache.maven.plugin.Mojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.logging.Log;
/**
* @goal test2
* @execute phase="compile"
*/
public class Test2Mojo
implements Mojo
{
private Log log;
public void execute()
throws MojoExecutionException, MojoFailureException
{
System.out.println( "\n\n\nHI!\n\n" );
}
public Log getLog()
{
return log;
}
public void setLog( Log log )
{
this.log = log;
}
}