0

我的 jira 插件项目运行良好。我已经执行了“atlas-clean”,因为更改没有反映在 JIRA 中。现在,当我执行 - atlas-run 然后它给我的依赖错误如下:

org.apache.http does not exists.
org.apache.http.client does not exists.
org.apache.http.client does not exists.
org.apache.http.client.methods does not exists.
.....

在 pom.xml 中,它已经存在..

      <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.1.1</version>
        <scope>test</scope>
    </dependency>

任何想法..它怎么能解决?

4

1 回答 1

1

您已在测试范围内添加了依赖项,如果在测试阶段以外需要依赖项,则必须更改范围

于 2013-05-08T10:55:58.497 回答