你想用Maven运行Jmeter测试吗?

时间:2015-07-08 14:31:16

标签: maven jmeter-maven-plugin

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

我创建了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未被识别为内部或外部命令

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

我在这里做错了什么?试过我所知道的所有可能的方法,是否有任何一步一步的指示可以通过这个过程,请建议。 提前致谢

1 个答案:

答案 0 :(得分: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