Versions Compared

Key

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

...

  • drop the installer zip in an hotdeploy directory monitored by ServiceMix
  • using ant tasks

...

Maven Archetype

You can use the servicemix-cxf-se-service-unit archetype to create a CXF SE Service Unit (including a simple POJO):

Code Block

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

Deployment

You can deploy Service Units containing a file named xbean.xml for activating consumer and provider endpoints.

...