diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2016-03-21 18:52:14 +0100 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2016-03-24 09:57:28 +0100 |
commit | 0fd2f2204c44b6b5ec82741233940b8471df06d8 (patch) | |
tree | ad129d4af5e0cdbaf003c8849a858cfce138ab4e /sonar-scanner-protocol | |
parent | cc9c506efd50786649658baa0d243654c59c512e (diff) | |
download | sonarqube-0fd2f2204c44b6b5ec82741233940b8471df06d8.tar.gz sonarqube-0fd2f2204c44b6b5ec82741233940b8471df06d8.zip |
SONAR-7368 Deprecate quality_profiles measure and add data in scanner report
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r-- | sonar-scanner-protocol/src/main/protobuf/scanner_report.proto | 9 |
1 files changed, 9 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 c7b4964f540..0d958a4eef7 100644 --- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto +++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto @@ -41,6 +41,14 @@ message Metadata { string branch = 3; int32 root_component_ref = 4; bool cross_project_duplication_activated = 5; + map<string, QProfile> qprofiles_per_language = 6; + + message QProfile { + string key = 1; + string name = 2; + string language = 3; + int64 rulesUpdatedAt = 4; + } } message ActiveRule { @@ -90,6 +98,7 @@ message Component { DIRECTORY = 3; FILE = 4; } + } message Measure { |