Skip to content

Instantly share code, notes, and snippets.

@chaudhari-sagar
Last active August 14, 2017 19:40
<profiles>
<profile>
<id>Stage</id>
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>2.0.3</version>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
<configuration>
<propertiesUser>
<host>stage.sample.com</host>
<!-- Use port 443 for https -->
<port>80</port>
<username>admin</username>
<password>password</password>
</propertiesUser>
<jmeterExtensions>
<artifact>kg.apc:jmeter-plugins:pom:1.4.0</artifact>
</jmeterExtensions>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment