码迷,mamicode.com
首页 > Web开发 > 详细

用Maven新建Web项目时报错

时间:2016-05-08 16:54:32      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:

在cmd下,用mvn命令

mvn archetype:create -DgroupId=org.seckill -DartifactId=seckill -DarchetypeArtifactId=maven-archetype-webapp

新建web项目时出错。报错内容:

Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.3:create 
(default-cli) on project standalone-pom: Unable to parse configuration of mojo 
org.apache.maven.plugins:maven-archetype-plugin:2.3:create for parameter #: Abstract 
class or interface ‘org.apache.maven.artifact.repository.ArtifactRepository‘ cannot be 
instantiated -> [Help 1]


原因是,我使用的maven版本是3.3.1,创建项目时create命令被generate替代了,使用下面新的命令就可以创建成功了:

mvn archetype:generate -DgroupId=org.seckill -DartifactId=seckill -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false

用Maven新建Web项目时报错

标签:

原文地址:http://www.cnblogs.com/glh199006/p/5470860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!