view mercurial-common/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/Constants.java @ 980:1168c4c64d49

Merge branch Indore-2017.2.x
author Dmitry Neverov <dmitry.neverov@gmail.com>
date Wed, 24 Jan 2018 17:38:56 +0100
parents 7bf4d943d5bb 2b1bd4bca6ad
children ec20a7691c8b
line wrap: on
line source
/*
 * Copyright 2000-2018 JetBrains s.r.o.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package jetbrains.buildServer.buildTriggers.vcs.mercurial;

import jetbrains.buildServer.vcs.VcsRoot;

public interface Constants {
  String VCS_NAME = "mercurial";
  String REPOSITORY_PROP = "repositoryPath";
  String BRANCH_NAME_PROP = "branchName";
  String HG_COMMAND_PATH_PROP = "hgCommandPath";
  String HG_PATH_ENV = "TEAMCITY_HG_PATH";
  String SERVER_CLONE_PATH_PROP = "serverClonePath";
  String USERNAME = "username";
  String PASSWORD = VcsRoot.SECURE_PROPERTY_PREFIX + "password";
  String UNCOMPRESSED_TRANSFER = "uncompressedTransfer";
  String USER_FOR_TAG = "tagUsername";
  String DETECT_SUBREPO_CHANGES = "detectSubrepoChanges";
  String USE_TAGS_AS_BRANCHES = "useTagsAsBranches";
  String INCLUDE_SUBREPOS_IN_PATCH = "includeSubreposInPatch";
  String USE_ARCHIVE_FOR_PATCH = "useArchiveForPatch";
  String HG_EXTENSIONS = "hg.extensions";
  String HG_COMMANDLINE_VIA_FILE = "hg.pass.commandline.via.file";
  String PURGE_POLICY = "purgePolicy";
  String GLOBAL_DETECT_SUBREPO_CHANGES = "teamcity.hg.detectSubrepoChanges";
  String IGNORE_MISSING_DEFAULT_BRANCH = "IGNORE_MISSING_DEFAULT_BRANCH";
  String CUSTOM_HG_CONFIG_PROP = "customHgConfig";
  String TEAMCITY_HG_CONFIG_FILE_NAME = "teamcity";
  String USE_AGENT_MIRRORS = "useSharedMirrors";

  String SHOW_CUSTOM_CLONE_PATH = "teamcity.hg.showCustomClonePath";
  String CUSTOM_CLONE_PATH_ENABLED = "teamcity.hg.customClonePathEnabled";
  String CUSTOM_CLONE_PATH_WHITELIST = "teamcity.hg.customClonePathWhitelist";
  String CUSTOM_CACHES_DIR = "teamcity.hg.customCachesDir";
  String CUSTOM_HG_PATH_ENABLED = "teamcity.hg.customHgPathEnabled";
  String CUSTOM_HG_CONFIG_ENABLED = "teamcity.hg.customConfigEnabled";
}