com.atlassian.maven.plugins.jgitflow.provider.DefaultJGitFlowProvider 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 com.atlassian.jgitflow.core.JGitFlow;
import com.atlassian.jgitflow.core.JGitFlowReporter;
import com.atlassian.jgitflow.core.exception.JGitFlowException;
import com.atlassian.maven.plugins.jgitflow.ReleaseContext;
import org.codehaus.plexus.component.annotations.Component;
import org.codehaus.plexus.component.annotations.Requirement;
@Component(role = JGitFlowProvider.class)
public class DefaultJGitFlowProvider implements JGitFlowProvider
{
private JGitFlow jgitFlow;
@Requirement
private ContextProvider contextProvider;
@Override
public JGitFlow gitFlow() throws JGitFlowException
{
ReleaseContext ctx = contextProvider.getContext();
if (null == jgitFlow)
{
jgitFlow = JGitFlow.forceInitCommand(ctx.getBaseDir(), ctx.getFlowInitContext())
.setDefaultOriginUrl(ctx.getDefaultOriginUrl())
.setAllowRemote(ctx.isRemoteAllowed())
.setAlwaysUpdateOrigin(ctx.isAlwaysUpdateOrigin())
.setPullMaster(ctx.isPullMaster())
.setPullDevelop(ctx.isPullDevelop())
.call();
JGitFlowReporter.get().clearLog();
}
return jgitFlow;
}
}