使用Maven Archetype生成工程报错的解决

下午使用Maven创建工程,使用mvn archetype:generate命令,选择了编号2,结果报错:The defined artifact is not an archetype。后来完整的写下了命令,成功生成了工程。

命令如下:

mvn archetype:create -DarchetypeGroupId=org.appfuse -DarchetypeArtifactId=appfuse-modular-spring -DremoteRepositories=http://static.appfuse.org/repository -DarchetypeVersion=2.0-m5 -DgroupId=com.seraph.xxx -DartifactId=xxx
 

猜你喜欢

转载自seraph115.iteye.com/blog/1119013