我在 IntelliJ IDEA 中开始了一个新的 maven 项目。
我在 pom 中添加了以下依赖项
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.5</version>
</dependency>
不幸的是,依赖
httpcore
不会自动解决,所以我无法访问像
HttpEntity
或者
HttpResponse
当我将 httpcore 添加到 pom 时,一切正常。
这里有什么问题?我真的必须手动添加吗?