gpt4 book ai didi

java - pom.xml 中的错误 - 无法传输 org.jacoco jacoco-maven-plugin

转载 作者:行者123 更新时间:2023-12-01 18:28:47 25 4
gpt4 key购买 nike

我有一个不同的父项目,现在出现以下错误:

Failure to transfer org.jacoco:jacoco-maven-plugin:pom:0.6.2.201302030002 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.jacoco:jacoco-maven-plugin:pom:0.6.2.201302030002 from/to central (http:// repo.maven.apache.org/maven2): null to http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/ 0.6.2.201302030002/jacoco-maven-plugin-0.6.2.201302030002.pom

我尝试使用 0.5.7.201204190339 AND 0.6.2.201302030002 和 ${jacoco.version} 。但现在成功了:-(

我使用 Spring Tool Suite - 版本:3.6.0.RELEASE 并且我已经安装了 m2eclipse 插件。

<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<!-- <version>${jacoco.version}</version> -->
<version>0.5.7.201204190339</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${jacoco.skip}</skip>
</configuration>
</plugin>

最佳答案

如果您位于公司防火墙或其他代理后面,则需要创建 settings.xml 文件并指定代理服务器的凭据,如下所示。

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<proxies>
<proxy>
<id>my_proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>{proxy server address}</host>
<port>{proxy server port}</port>
<username>{user name to be used for proxy}</username>
<password>{password to be used for proxy}</password>
<nonProxyHosts>*.google.com|localhost|127.0.0.1</nonProxyHosts>
</proxy>
</proxies>
</settings>

您可以尝试的其他方法是删除存储库目录并重试。

如果您使用 Eclipse,那么您还需要在 Eclipse 中配置代理设置。转到窗口 -> 首选项 -> 在搜索框中输入“代理”。

网络连接中,选择“Activity 提供商”作为手动,然后设置 HTTP 和 HTTPS 的代理设置。不要为 SOCKS 设置代理。

这些解决方案之一总是对我有用:)

关于java - pom.xml 中的错误 - 无法传输 org.jacoco jacoco-maven-plugin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25056715/

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