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

com.atlassian.maven.plugins.jgitflow.provider.DefaultJGitFlowProvider Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy