aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-protocol
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2018-06-20 18:28:39 +0200
committersonartech <sonartech@sonarsource.com>2018-07-04 09:31:04 +0200
commitbcb9937aa3d92eb934c089d59b0ddcb6ca28f864 (patch)
treebc236b9c462c4b1a033a7136b047cb7156e0e329 /sonar-scanner-protocol
parent1a987742ff44c0c9a1dbe126808c16d9166f3dd0 (diff)
downloadsonarqube-bcb9937aa3d92eb934c089d59b0ddcb6ca28f864.tar.gz
sonarqube-bcb9937aa3d92eb934c089d59b0ddcb6ca28f864.zip
SONAR-10868 Fix from_hotspot for external issues
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r--sonar-scanner-protocol/src/main/protobuf/scanner_report.proto9
1 files changed, 5 insertions, 4 deletions
diff --git a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
index 821b35e4d9a..8a1e78dde6a 100644
--- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
+++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
@@ -201,10 +201,11 @@ message ExternalIssue {
}
enum IssueType {
- CODE_SMELL = 0;
- BUG = 1;
- VULNERABILITY = 2;
- SECURITY_HOTSPOT = 3;
+ UNSET = 0;
+ CODE_SMELL = 1;
+ BUG = 2;
+ VULNERABILITY = 3;
+ SECURITY_HOTSPOT = 4;
}
message IssueLocation {