io.sealights.onpremise.agents.plugin.BuildFailureFormatter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sealights-maven-plugin
Show all versions of sealights-maven-plugin
A maven plugin to run java agents.
The newest version!
package io.sealights.onpremise.agents.plugin;
import java.util.Map;
import io.sealights.onpremise.agents.plugin.MavenEventsListener.FailedProjectInfo;
/**
* Removes special charactres from the maven raw failures messages
*
* @author ala schneider Nov 23, 2018
*
*/
public class BuildFailureFormatter {
public final static String SPECIAL_CHAR = "\u001B[";
public final static String EOF_LINE = "\n";
private final static String EOF_SPECIAL_CHAR = "m";
public static String format(String rawString) {
String converted = rawString;
for (;;) {
String tmp = extractNextSpecialChar(converted);
if (tmp==null) break;
else converted = tmp;
}
return converted.replace(EOF_LINE, "");
}
public static String collectFailures(FailedProjectInfo buildFailure, Map projectsFailures) {
if (projectsFailures.isEmpty()) {
return buildFailure.reason;
}
StringBuilder builder = new StringBuilder();
builder.append(buildFailure.reason).append(": {" );
int ctr = 0;
int last = projectsFailures.size() -1;
for (String pname: projectsFailures.keySet()) {
builder.append(String.format("\nproject:'%s', failure: '%s'", pname, projectsFailures.get(pname).reason));
if (ctr
© 2015 - 2024 Weber Informatics LLC | Privacy Policy