diff options
author | Janos Gyerik <janos.gyerik@sonarsource.com> | 2019-03-15 15:11:38 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-03-19 20:21:27 +0100 |
commit | f1c3675ebc5dd008903c3fcc9082bba55d750a06 (patch) | |
tree | 84e62ae70268c633630985d132f8f55b592edfa7 /sonar-ws | |
parent | 7a6bd184966f2aca9f996396e5465a245f3ce41a (diff) | |
download | sonarqube-f1c3675ebc5dd008903c3fcc9082bba55d750a06.tar.gz sonarqube-f1c3675ebc5dd008903c3fcc9082bba55d750a06.zip |
SONAR-11631 Replace codePeriodVersion with buildString
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projectanalyses.proto | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projectanalyses.proto b/sonar-ws/src/main/protobuf/ws-projectanalyses.proto index 891c5e52565..bde8d5aad80 100644 --- a/sonar-ws/src/main/protobuf/ws-projectanalyses.proto +++ b/sonar-ws/src/main/protobuf/ws-projectanalyses.proto @@ -56,10 +56,9 @@ message Analysis { optional string key = 1; optional string date = 2; repeated Event events = 3; - optional string codePeriodVersion = 4; - optional string projectVersion = 5; + optional string projectVersion = 4; + optional string buildString = 5; optional bool manualNewCodePeriodBaseline = 6; - optional string buildString = 7; } message QualityGate { |