GoogleCloudPlatform / GoogleCloudPlatform/cloud-opensource-java
Linkage Monitor to have an option to show the debug output
未关闭
enhancement
p3
- 主要语言
- Java
- 星标
- 163
- 派生
- 80
- PR 合并指标
- 30 天内没有已合并 PR
描述
When I have to troubleshoot Linkage Monitor, I'll have to compare the content of baseline BOM and snapshot BOM. Is there any good way to see the difference quickly?
```
for (int i = 0; i < baselineCoordinates.size(); ++i) {
String elementB = baselineCoordinates.get(i);
String elementS = snapshotCoordinates.get(i);
if (elementB.equals(elementS)) {
continue;
}
System.out.println("baseline: " + elementB + ", snapshot:" + elementS);
}
```
What if some elements are only in baseline or snapshot? What's the best way to compare 2 list of Maven coordinates?
贡献指南
评估
这个 Issue 还没有评估数据。