如何从本地maven项目运行jmeter方案(.jmx文件)?

时间:2015-02-26 07:11:57

标签: java apache maven jmeter jmeter-maven-plugin

我已成功在本地计算机上创建了maven项目存储库。 (参考:https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/wiki

另外,我在JMeter中编写了测试场景,效果很好。

根据互联网上提供的文件,我将.jmx文件保存在" \ src \ test \ jmeter" 。目录

我的POM.xml看起来像:

<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/maven-
v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.mycompany.app</groupId>
  <artifactId>my-app</artifactId>
  <packaging>jar</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>my-app</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>com.lazerycode.jmeter</groupId>
                <artifactId>jmeter-maven-plugin</artifactId>
                <version>1.9.0</version>
                <executions>
                    <execution>
                        <id>jmeter-tests</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jmeter</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </pluginManagement>
</build>
</project>

运行&#34; mvn verify&#34;命令,不执行.jmx文件。但是&#34;建立成功&#34;消息显示。

pom.xml文件中缺少什么?我该怎么做才能触发位于&#34; \ src \ test \ jmeter&#34;中的.jmx文件?目录

2 个答案:

答案 0 :(得分:0)

尝试从示例中删除<pluginManagement>元素。 pluginManagement只是在所有项目模块中共享相同插件配置的一种方法。有关详细信息,请参阅this question about pluginManagement

答案 1 :(得分:0)

测试应存储在:

$ {project.basedir)/ SRC /测试/ JMeter的

您是否尝试将它们存储在硬盘上的根文件夹中?