Versions Compared

Key

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

...

For ServiceMix 3.0.x versions, you need to define the classpath manually, as the default does not include any locations.

New in ServiceMix 3.2

You can now reference Shared Libraries and Components classloaders using the following syntax:

Code Block
langxml

<classpath [inverse="true"]>
  [<nonOverrideable>xxx</nonOverridable>]*
  [<hidden>xxx</hidden>]*
  [<location>xxx</location>]*
  [<library>xxx</library>]*
  [<component>xxx</component>]*
</classpath>

For example to reference the "cxf" shared library and the "servicemix-wsn2005" component in addition to the jars inside the SU, you could write:

Code Block
langxml

<classpath>
  <library>cxf</library>
  <component>servicemix-wsn2005</component>
</classpath>