
com.atlassian.maven.plugins.jgitflow.manager.DefaultFlowReleaseManager 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.JGitFlowReleaseException;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.project.MavenProject;
/**
* @since version
*/
public class DefaultFlowReleaseManager extends AbstractFlowReleaseManager
{
@Override
public void start(ReleaseContext ctx, List reactorProjects) throws JGitFlowReleaseException
{
startRelease(ctx,reactorProjects);
}
@Override
public void finish(ReleaseContext ctx, List reactorProjects, MavenSession session) throws JGitFlowReleaseException
{
finishRelease(ctx, reactorProjects, session);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy