Package com.atlassian.jgitflow.core.command

Examples of com.atlassian.jgitflow.core.command.AbstractBranchMergingCommand


        {
            if(AbstractBranchMergingCommand.class.isAssignableFrom(gitFlowCommand.getClass()))
            {
                ReleaseContext ctx = contextProvider.getContext();
               
                AbstractBranchMergingCommand mergingCommand = (AbstractBranchMergingCommand) gitFlowCommand;
               
                MavenProject rootProject = ReleaseUtil.getRootProject(branchHelper.getProjectsForCurrentBranch());
               
                mergingCommand.setMessage(ReleaseUtil.interpolate(ctx.getTagMessage(), rootProject.getModel()));
            }
        }
        catch (Exception e)
        {
            throw new JGitFlowExtensionException("Error setting tag message", e);
View Full Code Here

TOP

Related Classes of com.atlassian.jgitflow.core.command.AbstractBranchMergingCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.