pl.project13.maven.git.build.HudsonJenkinsBuildServerData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of git-commit-id-plugin Show documentation
Show all versions of git-commit-id-plugin Show documentation
This plugin makes basic repository information available through maven resources. This can be used to display
"what version is this?" or "who has deployed this and when, from which branch?" information at runtime, making
it easy to find things like "oh, that isn't deployed yet, I'll test it tomorrow" and making both testers and
developers life easier. See https://github.com/git-commit-id/maven-git-commit-id-plugin
/*
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
*
* git-commit-id-plugin is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* git-commit-id-plugin is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with git-commit-id-plugin. If not, see .
*/
package pl.project13.maven.git.build;
import pl.project13.maven.git.GitCommitPropertyConstant;
import pl.project13.maven.git.log.LoggerBridge;
import javax.annotation.Nonnull;
import java.util.Map;
import java.util.Properties;
import static com.google.common.base.Strings.isNullOrEmpty;
public class HudsonJenkinsBuildServerData extends BuildServerDataProvider {
HudsonJenkinsBuildServerData(@Nonnull LoggerBridge log, @Nonnull Map env) {
super(log, env);
}
/**
* @see JenkinsSetEnvironmentVariables
*/
public static boolean isActiveServer(@Nonnull Map env) {
return env.containsKey("JENKINS_URL") || env.containsKey("JENKINS_HOME") ||
env.containsKey("HUDSON_URL") || env.containsKey("HUDSON_HOME");
}
@Override
void loadBuildNumber(@Nonnull Properties properties) {
String buildNumber = env.get("BUILD_NUMBER");
put(properties, GitCommitPropertyConstant.BUILD_NUMBER, buildNumber == null ? "" : buildNumber);
}
@Override
public String getBuildBranch() {
String environmentBasedLocalBranch = env.get("GIT_LOCAL_BRANCH");
if (!isNullOrEmpty(environmentBasedLocalBranch)) {
log.info("Using environment variable based branch name. GIT_LOCAL_BRANCH = {}",
environmentBasedLocalBranch);
return environmentBasedLocalBranch;
}
String environmentBasedBranch = env.get("GIT_BRANCH");
log.info("Using environment variable based branch name. GIT_BRANCH = {}",
environmentBasedBranch);
return environmentBasedBranch;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy