6

我们正在使用maven-jmeter-plugin并且我已经设置了一个 jmeter 配置文件。当我运行mvn -Pjmeter verify各种 Maven 生命周期时,它们都不需要运行。

如何只运行 JMeter 测试?

<profile>
  <id>jmeter</id>
  <build>
    <plugins>
      <plugin>
        <groupId>com.lazerycode.jmeter</groupId>
        <artifactId>jmeter-maven-plugin</artifactId>
        <version>${jmeter.version}</version>
        <executions>
          <execution>
            <id>jmeter-tests</id>
            <phase>verify</phase>
            <goals>
              <goal>jmeter</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <testResultsTimestamp>false</testResultsTimestamp>
        </configuration>
      </plugin>
    </plugins>
  </build>
</profile>
4

2 回答 2

2

您可以使用以下命令仅运行 JMeter 测试:

mvn jmeter:jmeter -Pjmeter

要查看其余目标,您可以执行以下操作:

mvn help:describe -DgroupId=com.lazerycode.jmeter  -DartifactId=jmeter-maven-plugin -Ddetail=true
于 2014-02-05T15:32:42.637 回答
2

不幸的是,插件的作者似乎没有实现支持直接调用的 MOJO,因此插件必须用作生命周期执行的一部分 - 在该<build>部分中。

如果您需要快速运行测试,您可以尝试将临时更改<phase>为较早的版本,例如validate. 不过,我敢肯定,这不是插件打算运行的阶段,因此您不能永久更改它。

于 2013-07-23T09:22:12.037 回答