gpt4 book ai didi

Maven 在存储库中找不到 httpcomponents-client

转载 作者:行者123 更新时间:2023-12-03 12:39:25 25 4
gpt4 key购买 nike

我正在尝试将 Apache httpcomponents-client 库添加到我的 Maven 项目中。我已经向 pom.xml 添加了一个依赖项(在 http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcomponents-client/4.1.1 上找到),但是在构建我的 Eclipse 项目时,Maven 无法找到并下载该库。

我做了一个测试项目,除了包含这个库之外什么都不做,以确保它不是导致问题的任何其他设置:

<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>no.gundelsby.test</groupId>
<artifactId>NeedMyPackage</artifactId>
<version>0.1</version>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcomponents-client</artifactId>
<version>4.1.1</version>
</dependency>
</dependencies>
</project>

构建此项目会导致相同的错误。

我测试过的其他东西:
  • 尝试使用 Maven 2.2.1 和 3.0.3 的原版安装进行构建
  • 有 friend 在他的电脑上构建测试项目,排除我电脑本地问题
  • 将版本从 4.1.1 更改为 4.1

  • 几天前我在 org.easytesting.fest-swing 中遇到了同样的问题,请参阅下面的 pom 依赖项:
    <dependency>
    <groupId>org.easytesting</groupId>
    <artifactId>fest-swing</artifactId>
    <version>1.2.1</version>
    </dependency>

    最佳答案

    您不希望 httpcomponents-client 作为依赖项。这只是客户端相关模块的父 pom。我怀疑你真的想要 <artifactId>httpclient</artifactId> .

    关于Maven 在存储库中找不到 httpcomponents-client,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5531065/

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