The Maven JMeter Plugin allows you to automate JMeter tests in Maven.
This is to bring the project in line with maven naming practice for non-maven plugins and to enable us to upload to the Sonatype OSS repository. This project is now in the maven central repository.
Website for this project: http://jmeter.lazerycode.com/
A couple of google groups have been created for discussion about this plugin:
A place to discuss usage of the maven-jmeter-plugin, let people know how you use it here.
Homepage: http://groups.google.com/group/maven-jmeter-plugin-users
Group Email: [email protected]
A place to discuss the development of the maven-jmeter-plugin, or ask about features you would like to see added.
Homepage: http://groups.google.com/group/maven-jmeter-plugin-devs
Group Email: [email protected]
You can see the state of the current codebase by looking at the CI server - http://ci.lazerycode.com
Up to date documentation is available by checking out the code and running mvn site:run
on the command line, this information will also be mirrored on http://jmeter.lazerycode.com in the near future.
-
Add the plugin to the build section of your pom's project :
<plugin> <groupId>com.lazerycode.jmeter</groupId> <artifactId>jmeter-maven-plugin</artifactId> <version>1.4.1</version> <executions> <execution> <id>jmeter-tests</id> <phase>verify</phase> <goals> <goal>jmeter</goal> </goals> </execution> </executions> </plugin>
Once you have created your JMeter tests, you'll need to copy them to <Project Dir>/src/test/jmeter
. By default this plugin will pick up all the .jmx files in that directory, to specify which tests should be run please see the project documentation.
`mvn verify`
All your tests will run in maven!
See the full documentation for information on how to configure the plugin.
- Fork it.
- Create a branch (
git checkout -b my_plugin
) - Commit your changes (
git commit -am "Added feature"
) - Push to the branch (
git push origin my_plugin
) - Create a new Issue with a link to your branch, or just make a Pull Request.
- Enjoy a refreshing Diet Coke and wait