Maven (私の場合は Maven 2) を使用して Jmeter テストを実行したいので、 Jenkins に統合できます。このチュートリアルに従って WSO2 Test Automation Framework を使用して実行しようとしましたが、次の エラーが発生しました。
Missing artifact org.wso2.carbon.automation:org.wso2.carbon.automation.tools.jmeter:jar:4.0.8:compile
また、ここで述べたように Jmeter プラグインを使用する別のアプローチも試します
エラーは発生しませんが、ゴール検証を使用して Maven でプロジェクトを実行すると、TestJmeter.jm ファイルを src/test/Java ドキュメントに配置しても実行するテストがありません。maven-war-plugin については、動的 Web プロジェクトで作業しているため、POM に追加します。
これが私のPOMファイルです:
<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>e-conseil</groupId>
<artifactId>e-conseil</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<warSourceDirectory>WebContent</warSourceDirectory>
</configuration>
</plugin>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.8.1</version>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
何かが足りないだけなのか、これが間違ったアプローチなのかはわかりません。