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

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

There is a newer version: 1.0-alpha27
Show 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.JGitFlowReleaseException;

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 JGitFlowReleaseException;
    void finish(ReleaseContext ctx, List reactorProjects, MavenSession session) throws JGitFlowReleaseException;
    void deploy(ReleaseContext ctx, List reactorProjects, MavenSession session, String buildNumber) throws JGitFlowReleaseException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy