我正在使用Eclipse Luna和Maven 3.0.2,当我尝试通过命令提示符对我的项目进行mvn install
时,它的工作正常。
但是当我通过eclipse运行mvn install
时,它失败并出现以下错误
plugin - maven jar plugin or one of its dependencies could not be resolved ,
failed to read the maven-jar 2.4 artifact.
can not access the maven repository using the registered transporter factories
WagonTransportFactory: java.util.NoSuchElementException
如果您之前遇到过这方面的知识或对此有所了解,那么任何人都可以提供帮助。
答案 0 :(得分:0)
这是因为代理限制了对maven存储库的调用:
settings.xml
文件,如图所示。
<proxies>
<proxy>
<active>true</active>
<host>myproxy.host.net</host>
<port>80</port>
</proxy>
</proxies>
答案 1 :(得分:0)
感谢您的回复......
我尝试过settings.xml和proxy,但它没有发生。
然后我尝试使用Kepler eclipse,它的工作正常。
我认为Luna有一些问题。