gpt4 book ai didi

maven-2 - 如何将 httpclient 4.1.x 与 Maven 一起使用

转载 作者:行者123 更新时间:2023-12-02 10:18:36 25 4
gpt4 key购买 nike

httpclient 版本 4.0 在我的 pom.xml 中工作:

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.0</version>
</dependency>

...但版本 > 4.0 无法编译:

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1</version>
</dependency>

错误:

[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).


Project ID: unknown:httpclient

Reason: Parent: null:httpmime:jar:null of project: unknown:httpclient has wrong
packaging: jar. Must be 'pom'. for project unknown:httpclient

知道如何将 httpclient 4.1 与 Maven 一起使用吗?

最佳答案

确认,使用 Maven 3.0.x 就可以了!这是工作 pom.xml 的示例

<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.2</version>
</dependency>
</dependencies>

关于maven-2 - 如何将 httpclient 4.1.x 与 Maven 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6491457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com