1

我有一个通过 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>

这没有用。

很乐意提供更多信息。

4

1 回答 1

1

使用插件的 2.6.0 版本并在配置节点下添加:

 <excludedArtifacts>
      <exclusion>commons-pool2:commons-pool2</exclusion>
      <exclusion>commons-math3:commons-math3</exclusion>
 </excludedArtifacts>
于 2017-12-01T22:25:35.103 回答