com.github.misterreg.mavenplugins.buildgraph.EBuildResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build-graph-maven-plugin Show documentation
Show all versions of build-graph-maven-plugin Show documentation
Maven plugin that can create pictures of maven project execution graph.
The newest version!
package com.github.misterreg.mavenplugins.buildgraph;
public enum EBuildResult {
SUCCESS ("DDFFDD"),
FAILURE ("FFDDDD"),
NOT_STARTED ("FFFFFF");
private String htmlColor;
private EBuildResult(String htmlColor) {
this.htmlColor = htmlColor;
}
public String getHtmlColor () {
return htmlColor;
}
}