0

我正在使用带有以下命令的 Maven 创建一个骆驼项目:

mvn archetype:create -DarchetypeGroupId=org.apache.camel.archetypes -DarchetypeArtifactId=camel-archetype-java -DarchetypeVersion=2.12.1 -DgroupId=camelinaction -DartifactId=order-router

然后在使用命令后我得到ERRORS并且没有任何效果。

我究竟做错了什么?

4

2 回答 2

4

尝试原型:生成而不是原型:创建

mvn archetype:generate -DarchetypeGroupId=org.apache.camel.archetypes -DarchetypeArtifactId=camel-archetype-java -DarchetypeVersion=2.12.1 -DgroupId=camelinaction -DartifactId=order-router

在此之后,如果您在另一篇文章中阅读了有关 log4j 问题的解决方案,那么您应该没问题。

于 2013-11-01T20:14:33.347 回答
1

问题是原型不在 Maven Central 目录中。您必须指定应从何处获取原型,例如:

mvn archetype:generate -DarchetypeGroupId=org.apache.camel.archetypes -DarchetypeArtifactId=camel-archetype-java -DarchetypeVersion=2.3-SNAPSHOT -DgroupId=cameinaction -DartifactId=order-router -DarchetypeRepository=https://repository.apache.org/content/groups/snapshots-group
于 2013-11-01T20:46:33.180 回答