diff options
author | BenoƮt Gianinetti <benoit.gianinetti@sonarsource.com> | 2018-11-30 16:51:45 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-12-03 20:20:58 +0100 |
commit | 10a497515e673120e7d2161b7e01c3d7e299f6a9 (patch) | |
tree | 7a42189df8199568228579908cbc5477147debb0 /sonar-scanner-protocol | |
parent | e24615d14077f332fa7b322c9889b1fc49bd656e (diff) | |
download | sonarqube-10a497515e673120e7d2161b7e01c3d7e299f6a9.tar.gz sonarqube-10a497515e673120e7d2161b7e01c3d7e299f6a9.zip |
SONAR-11515 Add QProfileKey to ActiveRule in scanner report
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r-- | sonar-scanner-protocol/src/main/protobuf/scanner_report.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto index 3f3b5afec9c..7642e1dce0b 100644 --- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto +++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto @@ -80,6 +80,7 @@ message ActiveRule { map<string,string> params_by_key = 4; int64 createdAt = 5; int64 updatedAt = 6; + string q_profile_key = 7; } message ComponentLink { |