
org.jcoffee.GenerateReportCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of custom-report-maven-plugin Show documentation
Show all versions of custom-report-maven-plugin Show documentation
Adds reports generated by third-party tools to "Project Reports" section of maven site
The newest version!
package org.jcoffee;
import org.apache.maven.plugins.annotations.Parameter;
import java.util.List;
/**
* Created by sima on 7/1/14.
*/
public class GenerateReportCmd {
@Parameter
private String command;
@Parameter
private List arguments;
public String getCommand() {
return command;
}
public void setCommand(String command) {
this.command = command;
}
public List getArguments() {
return arguments;
}
public void setArguments(List arguments) {
this.arguments = arguments;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy