Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: upped example version to 2.9.0

...

If you would like to use an archetype from an unreleased version of Camel, you just need to let the maven-archetype-plugin know where to look for it. For example, say someone wanted to create a WAR based project based on Camel 2.7-SNAPSHOT9.0. He'd need to use the following command

Code Block
mvn archetype:generate \
  -DarchetypeGroupId=org.apache.camel.archetypes \
  -DarchetypeArtifactId=camel-archetype-war \
  -DarchetypeVersion=2.9.7-SNAPSHOT0 \
  -DarchetypeRepository=https://repository.apache.org/content/groups/snapshots-group

...