uk.co.automatictester.jmeter.lightning.maven.plugin.ConfigurationMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-lightning-maven-plugin Show documentation
Show all versions of jmeter-lightning-maven-plugin Show documentation
Maven plugin encapsulating Lightning functionality
package uk.co.automatictester.jmeter.lightning.maven.plugin;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugins.annotations.Parameter;
import uk.co.automatictester.lightning.enums.Mode;
import java.io.File;
abstract class ConfigurationMojo extends AbstractMojo {
/**
* Execution mode.
* Allowed values: verify, report
*/
@Parameter
Mode mode;
/**
* Lightning XML config file with test definitions
*/
@Parameter
File testSetXml;
/**
* JMeter CSV file
*/
@Parameter(required = true)
File jmeterCsv;
/**
* PerfMon CSV file
*/
@Parameter
File perfmonCsv;
}