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

aQute.bnd.maven.reporter.plugin.ReportPlugin Maven / Gradle / Ivy

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