GoogleCloudPlatform / GoogleCloudPlatform/cloud-opensource-java

Linkage Monitor to have an option to show the debug output

Abierto
#1,959 1 comentario 0 reacciones 0 asignados Ver en GitHub
enhancement p3
Lenguaje dominante
Java
Estrellas
163
Forks
80
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

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?

Guía de contribución

Abrir la guía de contribución

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.