com.atlassian.maven.plugins.jgitflow.provider.BranchLabelProvider 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.provider;
import java.util.List;
import com.atlassian.jgitflow.core.BranchType;
import com.atlassian.maven.plugins.jgitflow.VersionType;
import com.atlassian.maven.plugins.jgitflow.exception.MavenJGitFlowException;
import org.apache.maven.project.MavenProject;
public interface BranchLabelProvider
{
String getNextVersionLabel(VersionType versionType, ProjectCacheKey cacheKey, List reactorProjects) throws MavenJGitFlowException;
String getFeatureStartName() throws MavenJGitFlowException;
String getFeatureFinishName() throws MavenJGitFlowException;
String getCurrentProductionVersionLabel(BranchType branchType) throws MavenJGitFlowException;
}