in src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReproducibleCentralReport.java [113:126]
private void renderReproducibleCentralArtifact(
Sink sink, String groupId, String artifactId, String version, String scope) {
String url = "https://jvm-repo-rebuild.github.io/reproducible-central/badge/artifact/"
+ groupId.replace('.', '/') + '/' + artifactId + ".html";
String badge = "https://img.shields.io/reproducible-central/artifact/" + groupId + '/' + artifactId + '/'
+ version + "?labelColor=1e5b96";
sink.link(url);
sink.figureGraphics(badge);
sink.link_();
sink.text(' ' + groupId + ':' + artifactId + ':' + version);
if (scope != null) {
sink.text(" (" + scope + ")");
}
}