All Downloads are FREE. Search and download functionalities are using the official Maven repository.

imachine.timachine-maven-plugin.1.1.2.source-code.SetupMojo Maven / Gradle / Ivy

The newest version!
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;

/**
 * Migrate and populate seed data.
 */
@Mojo(name = "setup")
@Execute(lifecycle = "timachinecycle", phase = LifecyclePhase.COMPILE)
public class SetupMojo extends AbstractMojo {

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException {
        getLog().info("Setup successfully!");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy