diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2018-11-16 15:19:14 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-01-16 09:43:02 +0100 |
commit | b6f878d8d48c55c03bcbf2ba8010526f1fa12f49 (patch) | |
tree | 01f2d3038a65ea2d7f79978d17a77f4d33f69522 /sonar-scanner-protocol | |
parent | 6a598e7d7973171e04d78483085ede97a4e21dcb (diff) | |
download | sonarqube-b6f878d8d48c55c03bcbf2ba8010526f1fa12f49.tar.gz sonarqube-b6f878d8d48c55c03bcbf2ba8010526f1fa12f49.zip |
SONAR-11459 Stop publishing modules and folders in the scanner report
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r-- | sonar-scanner-protocol/src/main/protobuf/scanner_report.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto index 7642e1dce0b..f81097b5a92 100644 --- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto +++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto @@ -102,7 +102,7 @@ message Component { int32 ref = 1; // Path relative to module base directory - string path = 2; + string path = 2 [deprecated=true]; string name = 3; ComponentType type = 4; bool is_test = 5; @@ -126,8 +126,8 @@ message Component { enum ComponentType { UNSET = 0; PROJECT = 1; - MODULE = 2; - DIRECTORY = 3; + MODULE = 2 [deprecated=true]; + DIRECTORY = 3 [deprecated=true]; FILE = 4; } |