Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
mvn archetype:create                   \
  -DarchetypeGroupId=org.apache.camel  \
  -DarchetypeArtifactId=camel-router   \
  -DarchetypeVersion=1.13.0             \
  -DgroupId=myGroupId                  \
  -DartifactId=myArtifactId   

Note: -DarchetypeVersion=1.3.0 is the version number of Camel. Change this to the current version of Camel you are using.

Note: The newer version 2.0-alpha-1 of the maven-archetype-plugin breaks the above command. As a workaround until this gets resolved you can specify the version explicitly as below.

Code Block
bgColor#FFFFCE
mvn org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create  \
  -DarchetypeGroupId=org.apache.camel                                   \
  -DarchetypeArtifactId=camel-router                                    \
  -DarchetypeVersion=1.13.0                                              \
  -DgroupId=myGroupId                                                   \
  -DartifactId=myArtifactId   

...