
imachine.timachine-maven-plugin.1.1.2.source-code.SetupMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timachine-maven-plugin Show documentation
Show all versions of timachine-maven-plugin Show documentation
The maven plugin to manage migrations
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