如何解决找不到工件commons-math3:commons-math3:jar:3.4.1

时间:2017-03-08 05:22:51

标签: maven jmeter dependency-management jmeter-maven-plugin

我有一个项目,虽然maven执行JMeter测试套件。

我使用com.lazerycode.jmeter的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]

我通过浏览this这样的文章知道,这可以通过排除依赖关系来解决。

但它只是我不知道如何配置该依赖。

我尝试了下面的内容。

<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>

哪个不起作用。

很乐意提供更多信息。

1 个答案:

答案 0 :(得分:1)

使用plugin的2.6.0版并在配置节点下添加:

 <excludedArtifacts>
      <exclusion>commons-pool2:commons-pool2</exclusion>
      <exclusion>commons-math3:commons-math3</exclusion>
 </excludedArtifacts>