Examples of JenkinsBuildInfoGatherer


Examples of net.mgorski.quicktag.buildserver.jenkins.JenkinsBuildInfoGatherer

       buildServerInfoGatherer = new ChainingBuildServerGatherer(new
        AtlassianBambooBuildInfoGatherer(bambooBuildKey, bambooBuildNumber, bambooBuildTimeStamp));
    } else {
        try {
            Properties envVars = CommandLineUtils.getSystemEnvVars();
            JenkinsBuildInfoGatherer jenkins = new JenkinsBuildInfoGatherer(envVars);
            TeamCityBuildInfoGatherer teamCity = new TeamCityBuildInfoGatherer(envVars);

            if(jenkins.isJenkinsInUse())
            {
                buildServerInfoGatherer = new ChainingBuildServerGatherer(jenkins);
            }else if(teamCity.isTeamCityInUse()){
                buildServerInfoGatherer = new ChainingBuildServerGatherer(teamCity);
            }else{
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.