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

uk.co.automatictester.jmeter.lightning.maven.plugin.ConfigurationMojo Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy