2014-02-25 50 views
1

我正尝试使用命令propmt中的maven模板创建maven项目。但它看起来像下载jar和gatting失败。 Maven版本是3.2.1。请告知为什么会发生这种情况?Maven - 无法使用maven模板创建项目

C:\工作区> MVN原型:产生-DgroupId = com.mkyong -DartifactId = CounterWebApp -DarchetypeArtifactId = Maven的原型 - web应用-Dinte ractiveMode =假 [INFO] Scanning for projects... Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom [WARNING] Failed to retrieve plugin descriptor for org.apache.maven.plugins:maven-clean-plugin:2.5: Plugin org.apache.maven.plugins:maven-clean-plugin :2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-clean-plugin:jar:2.5 Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom [WARNING] Failed to retrieve plugin descriptor for org.apache.maven.plugins:maven-install-plugin:2.4: Plugin org.apache.maven.plugins:maven-install-pl ugin:2.4 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-install-plugin:jar:2. 4 Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/2.7/maven-deploy-plugin-2.7.pom [WARNING] Failed to retrieve plugin descriptor for org.apache.maven.plugins:maven-deploy-plugin:2.7: Plugin org.apache.maven.plugins:maven-deploy-plug in:2.7 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-deploy-plugin:jar:2.7 Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.pom

回答

2

你有工作代理?如果是这样,你可以在%MAVEN_HOME%/ conf目录/ settings.xml的检查您的代理配置

<proxy> 
    <id>optional</id> 
    <active>true</active> 
    <protocol>http</protocol> 
    <username></username> 
    <password></password> 
    <host></host> 
    <port></port> 
    <nonProxyHosts>local.net|some.host.com</nonProxyHosts> 
</proxy> 

It's看起来,你是不是能够连接到Maven仓库

+0

好,结果。什么只是我从apache下载了maven zip并设置了env.varaibles。为什么这是下载jar而不是引用本地文件夹?如果代理是必须的,那么如何定义主机? – user2848031