1

我有一个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部分?

提前致谢。

4

0 回答 0