I have a scenario to run jmeter-script
using sbt
. I am able to run jmeter-script using maven install
with below pom.xml:-
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.4.1</version>
<configuration>
<testResultsTimestamp>false</testResultsTimestamp>
</configuration>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
I have converted plugin part in sbt
"com.lazerycode.jmeter" % "jmeter-maven-plugin" % "1.4.1"
But not able to convert executions
part in sbt.
Can anyone help me to convert this executions
part?
Thanks in advance.