org.ndx.agile.architecture.gitlab.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab-scm-handler Show documentation
Show all versions of gitlab-scm-handler Show documentation
Allow gitlab infos to be included in project documentation
The newest version!
package org.ndx.agile.architecture.gitlab;
import org.gitlab4j.api.GitLabApi;
import org.ndx.agile.architecture.base.enhancers.ModelElementKeys;
public interface Constants {
String CONFIG_GITLAB_TOKEN = ModelElementKeys.PREFIX+"gitlab.token";
String CONFIG_GITLAB_URL = ModelElementKeys.PREFIX+"gitlab.url";
static boolean isGitLabProject(GitLabApi api, String project) {
return project.contains(api.getGitLabServerUrl());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy