Versions Compared

Key

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

...

The component we created above and packaged as a SU cannot be directly deployed to a JBI container until it's wrapped in a SA. This can be done by creating a SA project with a dependency on the SASU. From within the hello-world-smx directory, execute the following commands to create the Maven project for the SA:

Code Block
$ pwd
/Users/bsnyder/src/hello-world-smx/hello-world-se-su
$ cd .. 
$ mvn archetype:create \
    -DarchetypeGroupId=org.apache.servicemix.tooling \
    -DarchetypeArtifactId=servicemix-service-assembly \
    -DarchetypeVersion=3.1-incubating-SNAPSHOT \
    -DgroupId=org.apache.servicemix.samples.helloworld \
    -DartifactId=hello-world-sa

...