【发布时间】:2013-08-27 16:58:14
【问题描述】:
我在 IntelliJ IDEA 中启动了一个新的 maven 项目。
我在 pom 中添加了以下依赖
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.5</version>
</dependency>
不幸的是依赖
httpcore
不会自动解决,所以我无法访问类似的类
HttpEntity
或
HttpResponse
当我将 httpcore 添加到 pom 时,一切正常。
这里有什么问题? 我真的必须手动添加吗?
【问题讨论】:
标签: java maven intellij-idea apache-httpcomponents