com.atlassian.maven.plugins.jgitflow.helper.MavenExecutionHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-jgitflow-plugin Show documentation
Show all versions of maven-jgitflow-plugin Show documentation
A plugin to support doing git-flow releases
package com.atlassian.maven.plugins.jgitflow.helper;
import com.atlassian.maven.plugins.jgitflow.ReleaseContext;
import com.atlassian.maven.plugins.jgitflow.exception.ReactorReloadException;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.project.MavenProject;
import org.apache.maven.project.ProjectBuildingException;
import org.apache.maven.shared.release.exec.MavenExecutorException;
/**
* @since version
*/
public interface MavenExecutionHelper
{
void execute(MavenProject rootProject, ReleaseContext ctx, MavenSession session) throws MavenExecutorException;
MavenSession reloadReactor(MavenProject rootProject, MavenSession oldSession) throws ReactorReloadException;
}