JMeter with Maven
Recently I had a requirement to run JMeter scripts in Jenkins/bamboo. There is not much information on the web to do the same and I had to spend a significant about off effort to get it working. Hopefully, the attached pom should help anyone trying to setup a Jenkins/bamboo build. This script assumes that you are trying to use your custom build of JMeter along with plugins. Even though you might not need everything in the pom the dependencies and the attributes that you can set will give you an idea to enhance the pom as required. Will update the page with more explanation once I get some time. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.test</groupId> <artifactId>performance-tests</artifac...