运行mvn cmd时出现Maven问题

问题描述

|
C:\\apache-maven-3.0.3\\automated-maven-developer-setup>mvn install:install-file -
Dfile=Oracle-UCM-10gR3-v3.3.5.jar -DgroupId=oracle-ucm -DartifactId=oracle-ucm -
Dversion=10gR3-v3.3.5 -Dpackaging=jar -DgeneratePom=true
[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-instal
l-plugin/2.3.1/maven-install-plugin-2.3.1.jar
[WARNING] Failed to retrieve plugin descriptor for org.apache.maven.plugins:mave
n-install-plugin:2.3.1: Plugin org.apache.maven.plugins:maven-install-plugin:2.3
.1 or one of its dependencies Could not be resolved: Could not transfer artifact
 org.apache.maven.plugins:maven-install-plugin:jar:2.3.1 from central (http://re
po1.maven.org/maven2): Error transferring file: No route to host: connect
[WARNING] Could not transfer Metadata org.codehaus.mojo/maven-Metadata.xml from
central (http://repo1.maven.org/maven2): Error transferring file: Connection tim
ed out: connect
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5:36.470s
[INFO] Finished at: Wed Jun 01 03:47:56 EDT 2011
[INFO] Final Memory: 1M/15M
[INFO] ------------------------------------------------------------------------
[ERROR] No plugin found for prefix \'install\' in the current project and in the p
lugin groups [org.apache.maven.plugins,org.codehaus.mojo] available from the re
positories [local (C:\\Documents and Settings\\CJ4Y015\\.m2\\repository),central (h
ttp://repo1.maven.org/maven2)] -> [Help 1]
[ERROR]

[ERROR] To see the full stack trace of the errors,re-run Maven with the -e swit
ch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/nopluginFoundF
orPrefixException
C:\\apache-maven-3.0.3\\automated-maven-developer-setup>
我也添加了代理。
<proxy>
  <id>myproxy</id>
  <active>true</active>
  <protocol>http</protocol>
  <host>proxy.bbh.com</host>
  <port>8080</port>
  <username>proxyuser</username>
  <password>somepassword</password>
  <nonProxyHosts>*.google.com|ibiblio.org</nonProxyHosts>
</proxy>
    

解决方法

        似乎您无法连接到repo1。在您的nonProxyHosts列表中添加ibiblio.org时,我认为添加* .maven.org应该可以。     

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...