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

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

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)
        {
            jgitFlow = JGitFlow.forceInitCommand(ctx.getBaseDir(), ctx.getFlowInitContext())
                    .setDefaultOriginUrl(ctx.getDefaultOriginUrl())
                    .setAllowRemote(ctx.isRemoteAllowed())
                    .setAlwaysUpdateOrigin(ctx.isAlwaysUpdateOrigin())
                    .setPullMaster(ctx.isPullMaster())
                    .setPullDevelop(ctx.isPullDevelop())
                    .call();
            
            jgitFlow.getReporter().clearLog();
        }

        return jgitFlow;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy