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
package com.atlassian.maven.plugins.jgitflow.provider;
import com.atlassian.jgitflow.core.JGitFlow;
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)
{
if(ctx.isAlwaysUpdateOrigin())
{
jgitFlow = JGitFlow.forceInit(ctx.getBaseDir(), ctx.getFlowInitContext(), ctx.getDefaultOriginUrl());
}
else
{
jgitFlow = JGitFlow.forceInit(ctx.getBaseDir(), ctx.getFlowInitContext());
}
}
return jgitFlow;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy