Examples of TeamCityBuildInfoGatherer


Examples of net.mgorski.quicktag.buildserver.teamcity.TeamCityBuildInfoGatherer

        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{
                getLog().info("Not using build server (Bamboo, Jenkins, TeamCity) configuration.");
            }
        } catch (IOException e) {
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.