Package com.atlassian.maven.jgitflow.api

Examples of com.atlassian.maven.jgitflow.api.StartProductionBranchExtension


        if(null == extension || !StartProductionBranchExtension.class.isAssignableFrom(extension.getClass()))
        {
            return;
        }

        StartProductionBranchExtension startExtension = (StartProductionBranchExtension) extension;
        try
        {
            BranchType type = branchHelper.getCurrentBranchType();

            switch(type)
            {
                case HOTFIX:
                    startExtension.onTopicBranchVersionChange(newVersion,oldVersion,flow);
                    break;
                case RELEASE:
                    startExtension.onTopicBranchVersionChange(newVersion,oldVersion,flow);
                    break;
            }
        }
        catch (Exception e)
        {
View Full Code Here

TOP

Related Classes of com.atlassian.maven.jgitflow.api.StartProductionBranchExtension

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.