diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2018-02-12 17:03:52 +0100 |
---|---|---|
committer | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-02-20 10:06:52 +0100 |
commit | caf48455f693b76d06ebd2328d8498442cb0c1ab (patch) | |
tree | 484d205d34c8e62b7b472a255492a960137c8ef2 /sonar-scanner-protocol | |
parent | 209c36aefa2c16b5b156b21604664ff32ef13a86 (diff) | |
download | sonarqube-caf48455f693b76d06ebd2328d8498442cb0c1ab.tar.gz sonarqube-caf48455f693b76d06ebd2328d8498442cb0c1ab.zip |
SONAR-10299 Drop the project link "developer connection"
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r-- | sonar-scanner-protocol/src/main/protobuf/scanner_report.proto | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto index 75f915b9501..7d3123d24c1 100644 --- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto +++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto @@ -84,12 +84,13 @@ message ComponentLink { enum ComponentLinkType { UNSET = 0; - HOME = 1; - SCM = 2; - SCM_DEV = 3; - ISSUE = 4; - CI = 5; - } + HOME = 1; + SCM = 2; + // SCM_DEV is no more set since 7.1. See SONAR-10299 + IGNORED_SCM_DEV = 3; + ISSUE = 4; + CI = 5; + } } message Component { |