Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

The source tree is organized by "features", some being optionals and others .... not.

Code Block
  |- apache-servicemix  (distributions)
  |- bundles            (OSGi bundles for third party libraries)
  |- camel              (camel component for smx4)
  |- examples           (well, examples...)
  |- gshell             (shell console in osgi + some osgi commands)
  |- itests             (integration tests)
  |- jbi                (jbi 1.0 layer)
  |- main               (launcher jar, which contains the OSGi framework)
  |- management         (jmx based management)
  |- nmr                (the core nmr)
  \- transaction        (transaction manager)

...

Code Block
svn co https://svn.apache.org/repos/asf/incubator/servicemix/branches/servicemix-4.0/smx4/all smx4

then use maven to build:

Code Block
mvn

You will find the binary distributions in the apache-servicemix/target folder.

You probably want to grab the maven plugins and components and build those too

Code Block

svn co https://svn.apache.org/repos/asf/servicemix/maven-plugins/maven-plugins-pom/trunk smx4-maven-plugins
svn co https://svn.apache.org/repos/asf/servicemix/components/all smx4-components

Running

After having unzipped the binary distribution, you should be able to run

...