我在网上看一些春天的例子。我从
得到了一个例子http://code.google.com/p/spring-finance-manager/
在我的eclipse中导入项目时,我在POM.xml文件中出错。
Multiple annotations found at this line:
- Failure to transfer org.apache.maven.plugins:maven-resources-plugin:pom:2.5 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.apache.maven.plugins:maven-resources-plugin:pom:2.5 from/to central (http://repo.maven.apache.org/maven2): null to http://
repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
- connection timed out
- Failure to transfer org.apache.maven.plugins:maven-source-plugin:pom:2.0.4 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.apache.maven.plugins:maven-source-plugin:pom:2.0.4 from/to central (http://repo.maven.apache.org/maven2): connection timed out to
http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/2.0.4/maven-source-plugin-2.0.4.pom
我还试过删除我的.m2 \ repository文件夹。但仍然得到错误。
有人可以指导我解决这个问题吗?
答案 0 :(得分:3)
是的,我自己也遇到过这个问题。以下是其他一些观察结果:
无法传输工件 org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from / to central(http://repo.maven.apache.org/maven2):连接超时
我也想知道这实际意味着什么:究竟是什么传输以及从哪里到哪里?我相信我们最初在工作区中有.pom文件,并且基于pom,必要的工件将被下载到我们的本地maven存储库。这些存储库在我们的IDE构建路径中进一步引用。
为什么它"超时"对于某些文物而不是其他文物?而且,这些东西似乎指向" org.eclipse.m2.core。"更确切地说,org.eclipse.m2.core和代理的组合正在搞砸它 - 作为开发人员我们无法控制。这非常令人沮丧。
我们不知道的可能会严重伤害我们 - 例如 - (日食+代理)动态。
答案 1 :(得分:2)
在一些沉重的谷歌搜索之后找出解决方案:除了在settings.xml中添加代理信息之外,我还必须添加以下内容以使问题消失。再一次,只有涉及代理时才会出现问题。这是在下一次日食相关的神秘堆栈痕迹呕吐之前的平静 - 我想。
<activeProfiles>
<activeProfile>securecentral</activeProfile>
</activeProfiles>
<profiles>
<profile>
<id>securecentral</id>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
答案 2 :(得分:1)
您正在获取请求http://repo.maven.apache.org/maven2存储库的超时异常。不时http://repo.maven.apache.org/maven2无法正常工作。也可能是其他网络问题,例如您的主机DNS,网络中断集线器,网络代理设置等...
答案 3 :(得分:0)
我在许多不同的网络中遇到了同样的问题,这通常不会因为您的互联网或网络而发生,这是Maven repo的问题,作为解决方案,我清理了我的本地.m repo目录并再次通过下载jar文件maven /更新maven依赖项。 问题将会消失。这只是一次性过程,不需要每次都这样做。
答案 4 :(得分:0)
为maven提供settings.xml文件,其中包含用于连接到存储库的用户标识和密码信息。 settings.xml文件包含这样的信息 -
<repository>
<id>your_nexus_repo_id</id>
<url>https://path_to_nexus_repo_location</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<server>
<id>dsnexus1</id>
<username>your_user_id</username>
<password>your_password</password>
</server>
您可以在Eclipse中提供settings.xml文件,如下所示 -
在此之后 -
现在,构建您的项目 -
这可以解决你的问题:)
答案 5 :(得分:-1)
这个问题主要是因为防火墙更好地使用代理
在settings.xml
(。m2 \ repository \ settings.xml)中,添加相应的proxy
设置,告诉Maven通过代理下载工件
<settings>
.......
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>your_proxy_host</host>
<port>your_proxy_port</port>
<!-- Its optional if you need user name and password to connect proxy remove comment.
<username>proxyuser</username>
<password>somepassword</password>
<nonProxyHosts>*.yourdomain.com|*.yourOtherDomain.com</nonProxyHosts>
-->
</proxy>
</proxies>
</settings>