我有一个使用jmeter-script
运行sbt
的方案。我能够使用maven install
以下pom.xml运行jmeter脚本: -
<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>
我已经在sbt中转换了插件部分
"com.lazerycode.jmeter" % "jmeter-maven-plugin" % "1.4.1"
但无法在sbt中转换executions
部分。
有人可以帮我转换这个executions
部分吗?
提前致谢。