我有一个jmeter-script
使用sbt
. 我可以使用maven install
以下 pom.xml 运行 jmeter-script:-
<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"
但无法executions
在 sbt 中转换部分。
谁能帮我转换这executions
部分?
提前致谢。