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

com.atlassian.maven.plugins.jgitflow.manager.FlowReleaseManager Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy