Maven - 安装Eclipse Luna的问题

时间:2015-02-02 04:07:45

标签: java eclipse maven

我正在使用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

如果您之前遇到过这方面的知识或对此有所了解,那么任何人都可以提供帮助。

2 个答案:

答案 0 :(得分:0)

这是因为代理限制了对maven存储库的调用:

  1. 打开settings.xml文件,如图所示。
  2. 更新您的代理设置,如下所示:
  3. enter image description here

    <proxies>
     <proxy>
       <active>true</active>
       <host>myproxy.host.net</host>
       <port>80</port>
     </proxy>
    </proxies>
    

答案 1 :(得分:0)

感谢您的回复......

我尝试过settings.xml和proxy,但它没有发生。

然后我尝试使用Kepler eclipse,它的工作正常。

我认为Luna有一些问题。