JMeter Maven Plugin

The JMeter Maven Plugin Version 1.4 Has Been Released


Version 1.4 of the plugin has been released and it is now available from the main central maven repository, you no longer need to specify a repository to use in in your project. See the release notes.

How To Add The Plugin To The Build Section Of Your POM File


<plugin>
    <groupId>com.lazerycode.jmeter</groupId>
    <artifactId>jmeter-maven-plugin</artifactId>
    <version>1.4</version>
    <executions>
        <execution>
            <id>jmeter-tests</id>
            <phase>verify</phase>
            <goals>
                <goal>jmeter</goal>
            </goals>
        </execution>
    </executions>
</plugin>

More Information


This site is still under construction and doesn't yet have all of the plugin information that is available. For more detailed information clone the project from github and perform a mvn site:run. You can then access the current documentation via http://localhost:8080.