GoogleCloudPlatform / GoogleCloudPlatform/cloud-opensource-java

Linkage Monitor to have an option to show the debug output

Aperta
#1,959 1 commento 0 reazioni 0 assegnatari Vedi su GitHub
enhancement p3
Lingua principale
Java
Stelle
163
Fork
80
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

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?

Guida per i contributori

Apri la guida per i contributori

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.