![JAR search and dependency download from the Maven repository](/logo.png)
com.atlassian.maven.plugins.jgitflow.manager.FlowReleaseManager Maven / Gradle / Ivy
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;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy