Skip to content

Instantly share code, notes, and snippets.

@patelm5
Created January 25, 2014 14:55
Show Gist options
  • Save patelm5/8617580 to your computer and use it in GitHub Desktop.
Save patelm5/8617580 to your computer and use it in GitHub Desktop.
JMeter plugin sample configuration.
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.9.0</version>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
<configuration>
<ignoreResultFailures>true</ignoreResultFailures>
<remoteConfig>
<startServersBeforeTests>true</startServersBeforeTests>
</remoteConfig>
<suppressJMeterOutput>false</suppressJMeterOutput>
<propertiesSystem>
<java.rmi.server.hostname>jenkins.nerdability.com</java.rmi.server.hostname>
</propertiesSystem>
<propertiesGlobal>
<!-- supplied by jenkins / sys props -->
<users>${env.users}</users>
<iterations>${env.iterations}</iterations>
<timer>${env.timer}</timer>
<domain>${env.domain}</domain>
<ramp-up>${env.ramp-up}</ramp-up>
</propertiesGlobal>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment