我有一个通过 Maven 执行 JMeter 测试套件的项目。
我使用 com.lazerycode.jmeter s jmeter-maven-plugin。
使用 2.0.3 版本,我的项目运行良好。但是当我将插件版本更新到 2.1.0 时,会引发以下错误。
[ERROR] Failed to execute goal com.lazerycode.jmeter:jmeter-maven-plugin:2.1.0:configure (configure) on project my-regression: Could not find artifact commons-math3:commons-math3:jar:3.4.1 in central (https://repo.maven.apache.org/maven2) -> [Help 1]
我通过阅读这样的文章知道,这可以通过排除依赖项来解决。
但它只是我不知道如何配置该依赖项。
我尝试了以下。
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.4.1</version>
</dependency>
<dependency>
<groupId>commons-math3</groupId>
<artifactId>commons-math3</artifactId>
<version>3.4.1</version>
<exclusions>
<exclusion>
<groupId>commons-math3</groupId>
<artifactId>commons-math3</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
这没有用。
很乐意提供更多信息。