diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2015-05-20 11:02:55 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2015-05-20 11:13:10 +0200 |
commit | bb1e4774ac1cac50ba758c82ed6715b1abfe01a8 (patch) | |
tree | 8d83fda2f218aed96e1f1d2ecf5e812c52962de6 /sonar-batch-protocol/src/main/protobuf/batch_report.proto | |
parent | aac5b47155d3f4de3191951f8c2edb6eb415d385 (diff) | |
download | sonarqube-bb1e4774ac1cac50ba758c82ed6715b1abfe01a8.tar.gz sonarqube-bb1e4774ac1cac50ba758c82ed6715b1abfe01a8.zip |
SONAR-6553 Remove Java design WS and File dependencies persistence in Compute Engine
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf/batch_report.proto')
-rw-r--r-- | sonar-batch-protocol/src/main/protobuf/batch_report.proto | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/batch_report.proto b/sonar-batch-protocol/src/main/protobuf/batch_report.proto index 3cf17fc3031..bd07b9ac450 100644 --- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto +++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto @@ -256,19 +256,3 @@ message CoverageDetail { repeated int32 covered_line = 2 [packed = true]; } } - -message FileDependency { - optional int32 to_file_ref = 1; - optional int32 weight = 2; -} - -message ModuleDependencies { - repeated ModuleDependency dep = 1; - message ModuleDependency { - optional string key = 1; - optional string version = 2; - optional string scope = 3; - repeated ModuleDependency child = 4; - } -} - |