gpt4 book ai didi

maven-3 - 无法读取 org.apache.maven.plugins 的工件描述符 :maven-source-plugin:jar:2. 4

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

感谢 Dropwizard Maven 原型(prototype),我生成了一个示例 Dropwizard Maven 项目。 pom.xml 尤其使用 maven-source-plugin:

<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

当我运行“全新安装”时,出现以下错误:

Plugin org.apache.maven.plugins:maven-source-plugin:2.4 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-source-plugin:jar:2.4: Could not transfer artifact org.apache.maven.plugins:maven-source-plugin:pom:2.4 from/to central (http://repo.maven.apache.org/maven2): Connection refused: connect -> [Help 1]



“maven-source-plugin”依赖项存储在我公司的 Nexus 存储库中。所以我尝试在依赖项和/dependencies 之间添加插件依赖项:
<dependencies>
...
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
</dependency>
</dependencies>

但它并没有纠正问题。我还尝试在插件调用时添加依赖项:
 <plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
</plugin>

但它也没有工作

最佳答案

两种可能的情况:

  • 贵公司使用代理连接到公共(public) Maven 存储库。然后问你公司的人代理的IP地址是什么,然后把它放在你的settings.xml文件
  • 贵公司有自己的 Maven 存储库(例如 Nexus 存储库)。然后询问您公司的某个人 Nexus 存储库是什么,然后将其放入您的 pom.xml 或 settings.xml 中。见 Adding maven nexus repo to my pom.xmlhttps://maven.apache.org/guides/mini/guide-multiple-repositories.html
  • 关于maven-3 - 无法读取 org.apache.maven.plugins 的工件描述符 :maven-source-plugin:jar:2. 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41589002/

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