Maven Pom.xml问题
我试图使用maven制作一个spring mvc项目,并在pom.xml中获得以下错误:
CoreException:无法计算构建计划:插件org.apache.maven.plugins:maven-compiler-plugin:2.3.2或其某个依赖关系无法解析:无法读取org.apache.maven.plugins的工件描述符: maven-compiler-plugin:jar:2.3.2:ArtifactResolutionException:无法从http:// repo.maven.apache.org/maven2转移org.apache.maven.plugins:maven-compiler-plugin:pom:2.3.2被缓存在本地存储库中,直到中央的更新间隔过去或更新被强制为止,分辨率才会被重新尝试。 原始错误:无法传输工件org.apache.maven.plugins:maven-compiler-plugin:pom:2.3.2 from / to central(http:// repo.maven.apache.org/maven2):拒绝连接:no进一步的信息http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom
它与代理或防火墙有关吗? 我能做些什么来解决它?
听起来你需要在settings.xml
一个maven代理。
看看你的网页浏览器,看看它是如何设置的。
从配置代理的文档:
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>proxy.somewhere.com</host>
<port>8080</port>
<username>proxyuser</username>
<password>somepassword</password>
<nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
</proxy>
我修复了一个类似的问题(即无法传输工件...连接拒绝...)在我的情况下,通过修复存储库。 实际上,我添加了发布回购,只有里程碑发布,并拒绝连接。 Sugg .:检查需要哪些回购和/或从POM复制它们,没有问题。
<repositories>
<repository>
<id>repo.springsource.org.milestone</id>
<name>Spring Framework Maven Milestone Repository</name>
<url>https://repo.springsource.org/milestone</url>
</repository>
<repository> <!-- this one added -->
<id>repository.springframework.maven.release</id>
<name>Spring Framework Maven Release Repository</name>
<url>http://maven.springframework.org/release</url>
</repository>
</repositories>
<proxy>
<id>myproxy</id>
<active>true</active>
<protocol>http</protocol>
<username>chenchu.madhiboina</username> <!-- LOG in username/Put your username here -->
<password>hari01</password> <!-- LOG in password/Put your password here -->
<host>xx.xx.xx.xx</host> <!-- Put the IP address of your proxy server here -->
<port>80</port> <!-- Put your proxy server's port number here -->
<nonProxyHosts>local.net|some.host.com</nonProxyHosts> <!-- Do not use this setting unless you know what you're doing. -->
</proxy>
链接地址: http://www.djcxy.com/p/87281.html
上一篇: Maven Pom.xml issue
下一篇: M2E Maven Plugin: Importing Maven project is throwing error in Eclipse JUNO