0

有人可以建议如何使用 Maven 运行 Jmeter 测试吗?这只是一个简单的 jmeter 脚本,带有对 google.com 的 http 调用,没有变量。只想从一个简单的开始。

我创建了 maven 识别的路径 C:\Jmeterautomation\src\test\jmeter\google.jmx

我在这个目录 C:\Jmeterautomation 中创建了 pom.xml

这就是 pom 的样子

<?xml version="1.0" encoding="UTF-8"?>
  <project xmlns="http://Maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://Maven.apache.org/POM/4.0.0 http://Maven.apache.org/xsd/Maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.adp.ds.services</groupId>
    <artifactId>01-run-with-Maven</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>
    <build>
    <plugins>
      <plugin>
        <groupId>com.lazerycode.jmeter</groupId>
        <artifactId>jmeter-Maven-plugin</artifactId>
        <version>1.4.1</version>
       <executions>
         <execution>
           <id>jmeter-tests</id>
           <phase>verify</phase>
           <goals>
             <goal>jmeter</goal>
           </goals>
         </execution>
       </executions>
     </plugin>
    </plugins>
  </build>
  </project>

当我打开命令窗口并转到此 C:\Jmeterautomation 并键入 mvn verify 时,我收到错误 mvn is not Recognized as internal or external command

我已经下载了这个 jmeter-maven-plugin-1.4.1.jar 并保存在 C:\Jmeter\apache-jmeter-2.13\lib\ext 中。

我在这里做错了什么?尝试了我知道的所有可能的方法,是否有可以通过该过程的分步说明,请提出建议。提前致谢

4

1 回答 1

0
I'm getting error mvn is not recognized as internal or external command 

请先安装maven:

https://maven.apache.org/guides/getting-started/windows-prerequisites.html

于 2015-07-09T14:24:02.687 回答