Versions Compared

Key

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

...

You can get started using the Maven Archetypes, in particular the servicemix-camel-service-unit archetype.

Maven Archetype

You can create a Camel service unit using servicemix-camel-service-unit maven archetype:

Code Block

mvn archetype:create \
  -DarchetypeGroupId=org.apache.servicemix.tooling \
  -DarchetypeArtifactId=servicemix-camel-service-unit \
  -DarchetypeVersion=2010.01 \
  -DgroupId=your.group.id \
  -DartifactId=your.artifact.id \
  -Dversion=your-version

Example

There is an example in the samples area which creates a Camel Service Unit and puts it into a Service Assembly for deploying a some Camel routes and EIP patterns in JBI.

...