aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-protocol
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-01-09 13:57:09 +0100
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-01-16 11:38:43 +0100
commit444e029a905bda6baabb19ab5ff8cef50af23f37 (patch)
tree44496acc7c88828454d71cac39f55bc4c1958838 /sonar-scanner-protocol
parente0038b980c552dc86f66c32df6dfe74d4a287beb (diff)
downloadsonarqube-444e029a905bda6baabb19ab5ff8cef50af23f37.tar.gz
sonarqube-444e029a905bda6baabb19ab5ff8cef50af23f37.zip
SONAR-8593 add organization key to analysis report
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r--sonar-scanner-protocol/src/main/protobuf/scanner_report.proto11
1 files changed, 6 insertions, 5 deletions
diff --git a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
index 5b5d5b59b50..01a9cc7ead8 100644
--- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
+++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
@@ -31,11 +31,12 @@ option optimize_for = SPEED;
message Metadata {
int64 analysis_date = 1;
// TODO should we keep this project_key here or not ? Because it's a duplication of Component.key
- string project_key = 2;
- string branch = 3;
- int32 root_component_ref = 4;
- bool cross_project_duplication_activated = 5;
- map<string, QProfile> qprofiles_per_language = 6;
+ string organization_key = 2;
+ string project_key = 3;
+ string branch = 4;
+ int32 root_component_ref = 5;
+ bool cross_project_duplication_activated = 6;
+ map<string, QProfile> qprofiles_per_language = 7;
message QProfile {
string key = 1;