aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-protocol
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r--sonar-scanner-protocol/src/main/protobuf/scanner_report.proto6
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;
}