com.atlassian.maven.plugins.jgitflow.manager.FlowReleaseManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgitflow-maven-plugin Show documentation
Show all versions of jgitflow-maven-plugin Show documentation
A maven plugin to support doing git-flow releases
The newest version!
package com.atlassian.maven.plugins.jgitflow.manager;
import java.util.List;
import com.atlassian.maven.plugins.jgitflow.ReleaseContext;
import com.atlassian.maven.plugins.jgitflow.exception.MavenJGitFlowException;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.project.MavenProject;
/**
* @since version
*/
public interface FlowReleaseManager
{
void start(ReleaseContext ctx, List reactorProjects, MavenSession session) throws MavenJGitFlowException;
void finish(ReleaseContext ctx, List reactorProjects, MavenSession session) throws MavenJGitFlowException;
void deploy(ReleaseContext ctx, List reactorProjects, MavenSession session, String buildNumber, String goals) throws MavenJGitFlowException;
}