【问题标题】:Missing jar from repo1.maven.orgrepo1.maven.org 中缺少 jar
【发布时间】:2011-11-09 23:58:01
【问题描述】:

Eclipse 无法找到并下载以下 jar:

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcomponents-client</artifactId>
<version>4.1.2</version>
<packaging>pom</packaging>
</dependency>

http://search.maven.org/#artifactdetails|org.apache.httpcomponents|httpclient|4.1.2|jar

http://repo1.maven.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.1.2/httpcomponents-client-4.1.2.jar

已解决:我不知道 pom 是从哪里来的。

不见了。

【问题讨论】:

    标签: java maven-2 maven


    【解决方案1】:

    它没有丢失。

    这是一个 pom(项目对象模型)文件。

    您可能需要 httpclient jar。 pom 描述了整个项目(多个 jar 文件)。

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-10-24
      • 1970-01-01
      • 1970-01-01
      • 2010-10-22
      • 1970-01-01
      • 2021-07-07
      相关资源
      最近更新 更多