All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jcoffee.GenerateReportCmd Maven / Gradle / Ivy

Go to download

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