aQute.bnd.maven.reporter.plugin.ReportPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bnd-reporter-maven-plugin Show documentation
Show all versions of bnd-reporter-maven-plugin Show documentation
The bnd reporter maven plugin generates and exports reports of projects.
The newest version!
package aQute.bnd.maven.reporter.plugin;
import java.util.Map;
/**
* ReportPlugin Mojo configuration.
*/
public class ReportPlugin {
/**
* The name or the canonical class name of the report plugin (mandatory).
*/
private String pluginName;
/**
* A map of the plugin properties.
*/
private Map properties;
public String getPluginName() {
return pluginName;
}
public void setPluginName(String pluginName) {
this.pluginName = pluginName;
}
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy