bbd0e0c568
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/tycho.git#15edd47bbba0d2b7739884e73cfbdc5636e177f9
20 lines
392 B
Java
20 lines
392 B
Java
package org.fedoraproject;
|
|
|
|
import org.apache.maven.plugin.MojoExecutionException;
|
|
import org.apache.maven.plugin.MojoFailureException;
|
|
import org.apache.maven.plugin.AbstractMojo;
|
|
|
|
/**
|
|
* Empty goal to fix
|
|
* @goal empty
|
|
* @phase clean
|
|
*/
|
|
public class EmptyMojo
|
|
extends AbstractMojo
|
|
{
|
|
public void execute()
|
|
throws MojoExecutionException, MojoFailureException
|
|
{
|
|
}
|
|
}
|