fr.jcgay.maven.profiler.reporting.ReportFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-profiler Show documentation
Show all versions of maven-profiler Show documentation
Log Maven mojos execution time
package fr.jcgay.maven.profiler.reporting;
public enum ReportFormat {
HTML("html"), JSON("json");
private final String extension;
ReportFormat(String extension) {
this.extension = extension;
}
public String extension() {
return extension;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy