Created
January 25, 2014 14:55
-
-
Save patelm5/8617580 to your computer and use it in GitHub Desktop.
JMeter plugin sample configuration.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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